diff --git a/packages/google_fonts/generator/generator.dart b/packages/google_fonts/generator/generator.dart index ce943bce01f8..1425ab77fe61 100644 --- a/packages/google_fonts/generator/generator.dart +++ b/packages/google_fonts/generator/generator.dart @@ -13,6 +13,7 @@ import 'package:mustache_template/mustache.dart'; import 'fonts.pb.dart'; const String _generatedAllPartsFilePath = 'lib/src/google_fonts_all_parts.dart'; +const String _generatedLiteFilePath = 'lib/src/google_fonts_lite.dart'; String _generatedPartFilePath(String part) => 'lib/src/google_fonts_parts/part_$part.dart'; const String _familiesSupportedPath = 'generator/families_supported'; @@ -41,11 +42,11 @@ Future main() async { File(_familiesDiffPath).writeAsStringSync(familiesDelta.markdownDiff()); print(_success); - print('\nGenerating $_generatedAllPartsFilePath and part files...'); + print('\nGenerating $_generatedAllPartsFilePath, $_generatedLiteFilePath and part files...'); _generateDartCode(fontDirectory); print(_success); - print('\nFormatting $_generatedAllPartsFilePath and part files...'); + print('\nFormatting $_generatedAllPartsFilePath, $_generatedLiteFilePath and part files...'); await Process.run('dart', ['format', 'lib']); print(_success); } @@ -314,6 +315,18 @@ void _generateDartCode(Directory fontDirectory) { _writeDartFile(_generatedPartFilePath(letter), renderedTemplate); }); + // Generate lite file. + final liteTemplate = Template( + File('generator/google_fonts_lite.tmpl').readAsStringSync(), + htmlEscapeValues: false, + ); + final String renderedLiteTemplate = liteTemplate.renderString( + >>{ + 'fontEntries': methods, + }, + ); + _writeDartFile(_generatedLiteFilePath, renderedLiteTemplate); + // Generate main file. final template = Template( File('generator/google_fonts.tmpl').readAsStringSync(), diff --git a/packages/google_fonts/generator/google_fonts_lite.tmpl b/packages/google_fonts/generator/google_fonts_lite.tmpl new file mode 100644 index 000000000000..90f6d0fb1804 --- /dev/null +++ b/packages/google_fonts/generator/google_fonts_lite.tmpl @@ -0,0 +1,26 @@ +import 'package:flutter/material.dart'; + +import 'google_fonts_base.dart'; +import 'google_fonts_descriptor.dart'; +import 'google_fonts_variant.dart'; + +// Hosts a Map> where the String is the font's name. +// That is used to allow tree-shaking to remove all of the _parts files. +// If you only call GoogleFontsLite.fontsMap or GoogleFontsLite.loadFont(), +// the code in the GoogleFonts class and its parts classes is never called. +// WHat is called is googleFontsTextStyle, which attempts to load a font if not already loaded. +class GoogleFontsLite { + static Map> fontsMap = { + {{#fontEntries}} + '{{fontFamily}}': { + {{#fontUrls}} + const GoogleFontsVariant(fontWeight: FontWeight.w{{variantWeight}}, fontStyle: FontStyle.{{variantStyle}},) : const GoogleFontsFile('{{hash}}', {{length}},), + {{/fontUrls}} + }, + {{/fontEntries}} + }; + + static TextStyle getFont(String fontFamily) { + return googleFontsTextStyle(fontFamily: fontFamily, fonts: fontsMap[fontFamily]!); + } +} diff --git a/packages/google_fonts/lib/src/google_fonts_descriptor.dart b/packages/google_fonts/lib/src/google_fonts_descriptor.dart index 126ef9f756fd..e201deb6ebc3 100644 --- a/packages/google_fonts/lib/src/google_fonts_descriptor.dart +++ b/packages/google_fonts/lib/src/google_fonts_descriptor.dart @@ -38,7 +38,7 @@ class GoogleFontsFile { /// /// The [expectedFileHash] is used to verify the integrity of the downloaded /// file, and [expectedLength] is checked to ensure the file size is correct. - GoogleFontsFile(this.expectedFileHash, this.expectedLength); + const GoogleFontsFile(this.expectedFileHash, this.expectedLength); /// The expected hash of the font file for validation. final String expectedFileHash; diff --git a/packages/google_fonts/lib/src/google_fonts_lite.dart b/packages/google_fonts/lib/src/google_fonts_lite.dart new file mode 100644 index 000000000000..270276f1280d --- /dev/null +++ b/packages/google_fonts/lib/src/google_fonts_lite.dart @@ -0,0 +1,55552 @@ +import 'package:flutter/material.dart'; + +import 'google_fonts_base.dart'; +import 'google_fonts_descriptor.dart'; +import 'google_fonts_variant.dart'; + +// Hosts a Map> where the String is the font's name. +// That is used to allow tree-shaking to remove all of the _parts files. +// If you only call GoogleFontsLite.fontsMap or GoogleFontsLite.loadFont(), +// the code in the GoogleFonts class and its parts classes is never called. +// WHat is called is googleFontsTextStyle, which attempts to load a font if not already loaded. +class GoogleFontsLite { + static Map> fontsMap = { + 'ABeeZee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0032ca8bd6534c083b32ecf7920c456d0d0a5d04edd45c6144b4bafeebb8f8e5', + 30676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '91f9c1e6525c8f654996cae2c1fd20c3e8b9c753d5b6f957db0c337c7a929922', + 32152, + ), + }, + 'ADLaMDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e74d94f2fc63b888e816efe6e5368aa9f123b03832a9199b76bd62957f0f52f3', + 69068, + ), + }, + 'AROneSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b3c942e256541ad1a66c5feeeb1803c76e52fd35ad5c342eb0e37374f381f21', + 95440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a83623b2063171d97a7580b0053c9ed7d4ba4dbcd5e4880e251f111aac08847b', + 95452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0554695e153bf3b0ea7d1e945d4df16639157fc576028506c5bc48da8e7707cb', + 95440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0de11879e2d89ba73bc78ef631d47d15340f06141bab94eb911ce2c68a1d52b6', + 95316, + ), + }, + 'Abel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbef0740397e2ca38a05f204f7129be38b2ab6bb3994a69e14d3a245e489aece', + 32648, + ), + }, + 'AbhayaLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50e5cb049d0e3e04e498852e95102fe5883c78e1f92b34455e8ee053826f9c66', + 260860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84a6d3b4e0c34e7d6250b09a7e403e729d20b11d9d9b2cbd9cccd39ea2d95ce9', + 260976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc5ba43fd560019994cbef12d484793b0bb0ec58ea16c1964d342caec8023346', + 260144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '668223a249ceff3d577d8e116471dfaf79440271ba99b3f5fd74aba6260ef866', + 259828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a2994a83922a275a5e31d364a484804f3c98a6ee47106b8d3a7cfe0d981a548', + 259032, + ), + }, + 'Aboreto': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0077414ca4d77ab34c9aaae57c9b5de9e28b475d0ca8bcd9af3da80ffdad2726', + 34204, + ), + }, + 'AbrilFatface': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95247ed0ac42215bff3c50489b91942a912e755ef30f32cac5450e0d3245d72a', + 56284, + ), + }, + 'AbyssinicaSIL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16e1991f6942323b7280a80f34cf8f915b80fa9c1d5cc1fd4530a9fc1ca54312', + 214064, + ), + }, + 'Aclonica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9cb4387809cda19f417138f419c71d11f7d7f5e179edf9ddbd7e76e84ed01c11', + 53120, + ), + }, + 'Acme': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb057c2fe8ba04cd3a8abc8e4d985898dcdaccd6f9fa1d5ed9881e3f26d6e6d0', + 21392, + ), + }, + 'Actor': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dbae263f0b071a1c8fbae0ec05b5c111856d011f51076dfea6b56d4ab8e5b36', + 32560, + ), + }, + 'Adamina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0fc3479122be61b543446f9c6cfbd231a6e5b8f7518fc842c7721abc79efadc4', + 34172, + ), + }, + 'AdventPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae6e62435a06ae5e7fe13ca42f4a005f6dde2bddbbd5d0b47cb0050447549211', + 73424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ab63e5c3dcf8cafd470d33af3bb9f06aa0c80fe8e256e7c0c73c40107e443d5', + 73492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cb12692d5b7882c647e4216e805fa0f18d0d461d293f633d7519a065734ba25', + 73408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2756a227e16545ace2b6b5047f5ed76c876f6e6b2be2a2fad7e2dd5b8714e1f2', + 73280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e4ca7633768a213b90983db5c5809dfe5df60326bed3f5220d64903e9345632', + 73348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f8ce9d5061e7b52adfbd63cb01bd012171993ea14d2be95b7deeff56f3f3497', + 73268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '083413c94dede71e324a15905bfea13922910bd1579e08fae41bc3d9431dc05c', + 73112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f209be2bbb2718027018c72e151f3acbb0fe52381f262a296b6dabd8787c64ad', + 73152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a737cc97f47ace95ec83fb033ebb146a0eb9fa3407c7083f5b54f9148e49bbdf', + 73064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f71842a54db38b48d29af0bd7186b5763e2a232f255f0becc7d73f185b4449a4', + 75356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c3b9dd175d65d069da3955c4cadf1106c032040ad71a8166bff07864e622ceb2', + 75440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cb6a9d21883dcd24a259585f6d40edbd5eea9d5f06f9801cd81b84f6998f4f3f', + 75348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '49f4a337a56e2c44198413a760eaff48adb35f3f2279a16d441e1db1b9bdd85b', + 75148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a34f535f405dc30b0b11181b4f9ffd76220b4cedcc312a581a67300fcb0b280a', + 75256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '969910a88e6ecee0055008465e98716d9f9cae01125c4d218d311b70b74e1041', + 75188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd3a1b3251594305cf6da2aeb54d6bc574d115802d24b5c57ca4092a2c34b3f8a', + 75008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bcbbbb4a782a0580feb95fa7317a19e984bc6a347d7dd975ffead3eda6490db0', + 75096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c7fe24d1b0f8905029e4b0b441844e4ba602d789180e26f62e253cb25fc629eb', + 74968, + ), + }, + 'Afacad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5cbc6503ee4f371ca57827d1dc6eae015fa833dc1399bffc72323cfb4b47fab4', + 67504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77d3dfab30eb821ea0c1abdf52103631bd6df6f5d8686a8e532f34794a4c05ee', + 67976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c557f1df2d56e075092b7b87534798a4c0e5b47ee88723f651c604df6b76667', + 67932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b996fb15f82028bfb736daff1883e303c8bb362434603690ae90b96a85a31f69', + 67708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'acc8932e8c41bf97d120fb0d64dbe6f2aa0194b3d860625e027f7d63e7d56167', + 68632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7f5a1ac6241d5c674b60c5c466b03d59386d7dac3cf36271c7658594f2acca1c', + 69036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '49b882b5097f2ed5da1444a7c4a878687ac2598cf29158676e30b6ca33a3cf4f', + 68984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'edafc60fd97a321ce0ec4c0778c634529db68c0b0cdcdd824514fb91913beeda', + 68856, + ), + }, + 'AfacadFlux': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '476bd5c9b36a34f89dae540ef76287eaab656bc28669b1f0a4ebe2aa1e3196f8', + 71732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f157805f7866156d7e0b65f18356f291c1da61885b88f04ea9860c671a6e5b7c', + 72104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67e3b6e06d9711c5eac8bf8f5593257f170eafc6070aab45d10d655dbcd1af11', + 72064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c65e2a5b80326e537d253d9909320e72adad0c69204caa4dd6508c04458fba84', + 71328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee74eb00a6d8cbd5574a36576b5fc3a5f7734bc9767935df6a7b627c6ac9bdb5', + 71800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8396385d79cd205f73ed63d371590749311a382e50c7c1dfeb2bab5521a92f9d', + 71748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6eb7fa0b840ca037b7a792fbd803808b590db843a122622b364a0f2331170ce7', + 71552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e719ce41e4a44d326208b5ff57534117aa7534ed7b801a82f687a04f20e82559', + 71984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9be1aaa232482c5831dc860561a18b0043bca4edda9b86d9f4eb960725e4e3f3', + 71984, + ), + }, + 'Agbalumo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f39b4cfe1ea701d5f473c122dfcbdb5a1b58ba6332a1878640a21d035d0a647', + 1478220, + ), + }, + 'Agdasima': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b632f82cd39b82c2c8100b7d53878d551769116a0f047e7c763a2e71d336c99', + 22552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6cb3f3184e01ccdb75eedf10c9ed33b98cc3001cec077ddc46b62b0e4846db24', + 22412, + ), + }, + 'AguDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7950f267e8e99759fd5bb2ef3e451419523e711fdb1ebeb62faa7bb8941b4dd7', + 195948, + ), + }, + 'AguafinaScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67d457ebe8c906c7a08c078f6e2b8334724664ebd83cdcc015444afd7bc947f1', + 44884, + ), + }, + 'Akatab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6036c083d47ad74a556f4937da745ef0d6699779e3389f6aa2f30a08c12b46f4', + 74088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f91d1b367c46efe2a3866edda507d20354d1bd20672956084d4a7b420548aad', + 74404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c56670afad336e55c4b9935c473ed60be51a7134603d690babef49a2c3654435', + 74736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74b79f60d0d4714283cb95e4f19def0df961857e15167f0b7adcd66904100c9f', + 74632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0c3bd80983281b80a562288fdb60c5f24b488b5baa4c396e406c64889e07ca0', + 75020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb90507fa61d8a76da8ff54ea5d6fc3370886b96adbed8f6cbac21151517f214', + 75432, + ), + }, + 'AkayaKanadaka': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23d0126945316112f9e0ea529ac846ed9cce5b43db898006112ea292c9ee4268', + 204280, + ), + }, + 'AkayaTelivigala': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7bd125959e46c5112647f4d994e895bbc3b9f0ab83e1e0e42b1046b5a100aa2f', + 319968, + ), + }, + 'Akronim': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2092a1a3699c69bb9776d37189bc8601dbdf4546f015d3c2c2cc826eb5162915', + 105652, + ), + }, + 'Akshar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7bcf831a164c2e05f865d1557cb1d6d22d0f859f39706a5a2dafa5a2f46c395', + 119076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bdfcd2da16e12af5cd0fee1a95ca5ef612c9a39a343752ce85cbfd1987239762', + 119732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c7d80f8a145cd01068dffbdf19b02d35438a5a08c460c431570d66c3bcd111b', + 119892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fd32bdefe9c8c1fb2c9a16f278a0c07d57e351668d06d9d1a3dfdaaf814c951', + 120044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '821488fa47b46a4a321005aba1e160af34c7871c8c51ec9442a15a6801e201d8', + 119992, + ), + }, + 'Aladin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55d0d65ec7e0251db1d8e2f46bb9ee8ec36ad55237f1c834897e75a9a75ba405', + 39832, + ), + }, + 'AlanSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9869d61ad1fc8dc015915686851f6e5aba0f03a3b16e668b360cf955ba0ef1ca', + 62040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2c73b7811643fad5a3faa77cc19dcb87a6feb80e30939c6732d8bed5d1d3f97', + 62036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f67a78d2bfe63e1d0b827426a980f1759913ae357f47dc18f4bec7f6354cc678', + 62156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37f237956dc8e36984d19ee9747b1ef6374a6673389306c2f0c30dd563b43a01', + 62108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4434397b265d2f110e2716c9ac50f90ccff0de5960f90c07eb0b2c2eae032e57', + 62060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37abfe0d2068d881906b7f0df0df9a3bd386ef06fc8c679fe7f4468df4224ae4', + 62136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87f1319d5deafcae1eb29afb189c0e45575cd29da932597f677c0487f65960f5', + 62076, + ), + }, + 'Alata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50c90d138a25d665d208166151c88c6d281fc7bb7ff827aa44fead9cc487f008', + 275544, + ), + }, + 'Alatsi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '393fe2ab24967a1f8b76b6347a7701c2df6b34ef4cf61e4ff76d0148a339f62b', + 338552, + ), + }, + 'AlbertSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e38e15f8ce52528c9f28600f960d0bae0ca78c7d433de851ef60c79a242f9ff1', + 44564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86e5b2a2a3be9b71715fa21c1d71566925a7b3133e63046973e8c3c4e7b0d559', + 44668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e988e3c0f61c02b91f0b3279b4c3741c341c27634444d36dfed47b1769d7b06c', + 44620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ad1d3aee2f85d7eb17f71e4da71934316e8b1928d810d7ff541653e27a7317e', + 44560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '021871a9b25ea6b9df11da02fed7123ceb5a1907d35ca08922833d592192a06d', + 44556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '31dad35ab579a63794b6b17fb5af5522f9a5bc0db7a6d3ba2f1c13f0044a7041', + 44532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8805a0815eeb233ae1d15d5847b543ead68434a61dbc57d7a67856d801f0153a', + 44476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c925f7fe663f354f480bd256288440561317ec5d90193d59dc07328c92af76ab', + 44604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '192be687371143f265ef05ca34fa8c4940cd8a919eb21c2e7254da43dd37f346', + 44572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cf66cf0c94e4a74fe1a1766bebee91fb72557d683127d123f8ecf39ca49fb247', + 49676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e880ccaef24c826a30b60e004717ff794abfbf1842b51e60f99e08c71bcdde4', + 49744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0b395325c367b0bc981af643b04816b9cd3d1daaab6651279f2711cc75bf68ec', + 49672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c4386b8636f08d6bc93dc5c6373173235fbdfb565eae0095492ab4711653961', + 49532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b1c46d882a8240ffd6251fec3b2abfcdb8f82daf7383956a388dbfc7816b71b3', + 49632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5f2ea76eaf70954d37cd99dde98c7d29ce8d4e445e03c95d176e481c358447b1', + 49624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1e307dd0f4253e882aa9bf29c2d47347d0f91ff2f47b7f05ba7846402397942d', + 49528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '18b7fc3f08008e7dea6350af868ff31ce1aabbc448431d9237d3d607001559de', + 49676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0fa0b50a97a4e1b1d87669427749a196ec6d4e8315d61b7bb5991c062d37abf6', + 49596, + ), + }, + 'Aldrich': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd275619bf23492dd0dd38e6e0b0a079258dee4a7a9eab520fa182a85c9e1c237', + 25504, + ), + }, + 'Alef': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '002d464facd9306bb4739bc6017532b50acf9e8d78daccd94a45414e66df3231', + 57172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46147d25111629b9b105a3004daad8388b2f0d364a776691e70fe4a2d35c627b', + 58820, + ), + }, + 'Alegreya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da3ab4f4162ad6e9e76e35859587d632c99f89ed69536184c2eeded7c9bfd75a', + 161832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bec3ae275d2eb11cfa622fd231df285cfc61054d3762763db9d67fe1f03e4941', + 163300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ac1b06c398873c60cfeeffd9ff449b6ad22a7c4430b53c93de3af86694b5895', + 164632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74978d394e53a1ec4121234296a85db630ff7e3b8b36cb50eaa1455f9afdb026', + 164484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '854ac478806271823e6bf7f6c4210a33961b02f9fe0e9bfcbd53051613339bc0', + 165096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d4dfd1c8d83a049f268a1365a9d2d82608c3472033c48353c03700fe2bfa00d', + 164608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '77a9b37a76e241849025b1047074ef89b9083fcd46df58c6847e98d6b6641664', + 160972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '60727ba877a4eab2e8f1e88e5b448c1d85eb4a4e04833fd2f018dc62ff8b6587', + 162020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f1fabe62eecd146a20a3732de56a1267aabee11b29d07c71d6cebe520694f28', + 162000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '007a711c4539a8d2b66f1ef17190068cf350bfba7553b86071928abb4951bc5c', + 163544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b8e6fb871f0c00167df763f70007b14b3e4acbd47efffc1d1b389b35ea298ab', + 164156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e8db0c5c42191185f97aa7425d732cb66e57461c1d32875192f958242fe65a90', + 163692, + ), + }, + 'AlegreyaSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f55dcac803ce309dfc7f259481c9d76d2c21a5e63a79fff4b3c84c54064414f', + 222000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c620f1045385da405d2af94dc73898adaaecccad365544b7070ad4332a38559', + 228076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38b951d6fe11db1795c3f9a24d611fff8792895cc517ee2a9ae20d3b4ae7008b', + 221440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c392893a20f1de5b95769e10c58702aa3f2deb5bd238ccebdd420fbbc8520fe', + 227012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '82d582157bedfd8a54a3b3e574a72d1294b2629ce16fb63b5a67f8e7e4bb5e9d', + 218720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1fe5401ff18804c4da1d804236893154ad87d2e2f84dac32195d621d2ad016e3', + 225632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb7bc79bb23c29b64ad2d7c454240417cfcf077362b1c4e3d61f1b0b5369cfb3', + 217292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '184a01135fe93d44694688506298abb455b2cd7855ae120089074d6e328f2705', + 220584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01787d41a46854e6f0f6e0e33cf4d5d3e7c0e08487effcbd8ebf0fcaa1612cc5', + 214464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bfab7b77e24da90deb9ef91732a81c91fcd2549c464024b457fb50f178dffbf8', + 219956, + ), + }, + 'AlegreyaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9246e06b0018037f334fe2b9599e3fd3ad9fd337abad99f471c0dddf8095564d', + 124188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70430c0c966a55b8e0e292dfda8758d2d3956122888caaa78f3876df7edcbfdd', + 129204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '684c15c7ed5fd021ab0f381491b94b09a2c0a7deeb2df52a63c5d0ae47a74964', + 126940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f6bc70f7f328f15b7a7ec28eed7f068e93e2e29a2be5b0f565d2062391ff9037', + 130004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c162f142e767a2fa8972511eea74a35103b874a03fdbe38d798d764838a77b1d', + 126992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e584fe012aec64088ce3f6eefbe1a9fe290220012862be4e03db06eb8a497508', + 129612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '644c31d9f5cc9c40e675cfd13637c28dfee563b9218e067b33523a5936c527b3', + 127396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '732d64b8ff9cde9474d5e801e3e21f8996de7dc4985561e9bb751508534deaee', + 130780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15b357ab4442e49392ba69e775f96bfe71f0b3a68d379be7ed42bb40bb509632', + 127276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '452c9783674ae2958afddcab74180655f7cd6b6a807b3068711c7a93b2b561db', + 130440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3b05939695642f9d0fb91f8b97122e38d4895242e096bc21f0c056cc8c4eda3', + 127284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4d173018a63e57004b0a35658a4b276917dacde45873c11fd9f907bdb490aeb', + 130316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69f4e115ede865d4c1966e30110ed5f04e9950d410986cf91482d0cd1287fd2d', + 125364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '67913eb667df2f9e40f878e8b12c8566efb029730ce4a43db5b5ae1b3b02e6ef', + 129140, + ), + }, + 'AlegreyaSansSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e25e9062412be7ceefce450d892326df7b9b19e33e32da4b65c97e8369a6f8c', + 151484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f8f4a066853e40a0da309e237af9b7c4591e0480e8dc48485d05e6d9dedf864f', + 155512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6267441caf2738600cfcf8ff82c02bce8a3c178ffc213eede3d4147951275a5', + 155332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c24dfb1500f5408e0bb36d24e838ec6ab24afeacf1057853959efb30091b7a12', + 156848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e4f08348afb57dc3fbd4074c06f6ed6d42bf73e5e596d87c9a1a3dfa5f1e5b0', + 156612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '172f5d19b7aaa2cc6ac510fd2c36889996ae9f6a5bd74b0323018b6c694ff704', + 156876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffeed009d8ba25f7030cf5d9f42fe728da881909970d11a7adfe15e579c34370', + 156916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9d71dc7e45bbfd62dbb1b97adee2472d213d5b9b216952141c93f323a897aaaf', + 157976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ab3ee4285ff3e411e0819ff0e6cf3eaf4897ceaf4e1110b8909816b7e2ce95d', + 157476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '249c75d7ee1a133c3611ee604aac11c0ae022e0c11f82daac9b94b9d3859c1b5', + 157828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c60fed244eaa6f76021defc265686e8085b6623bd6d6ae476688cd9f22dda8c8', + 157728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '56e6db66aed61ccdff246c03bc912d28aca20e55890a22da0f05320406e54a51', + 158512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '847e915ca11e13632dd047ba819cf77dc7b6ddca1713caa4e3e097fc37d10183', + 156908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9498577a6bf09f5d779067a63ad2baf63b894cc794cef0859516f8e271c5bc9d', + 158100, + ), + }, + 'Aleo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44dbaff81ded38f6044229ee60e9f55375538f8ab8f4fd5a064927f63eed9ded', + 71120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6606cd59e8b65a21e058ff1f681814543645645f046f22600353c30911adc6d7', + 71520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '307a795d41b5186f10f09812624413a38c9b1601fd45c64c27a751720c28558f', + 71464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbfef9c7ee46e4f833b15c88a8635bd0fd347061cddb49f2832748fe84e3033e', + 71408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed34472b450ad1f457682791864be8850a3ba7d7abb01ff39ee0af6495dc6e39', + 71528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3483dafa36726e6976ff3f01f21885e49c9071f0d2465c988ceb8e3f9ad3f4f', + 71572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffad5af5cf1899caa46cf73c82efe399449c956e06d6612868621b1da8687dac', + 71592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d55a1f579642b7e8da8c4332cfe5bdc7c7d024f0671c58ec43eac001028cff4', + 71628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd38bab11619fce60d4d4e633a1aac887e9ab20e074bf195930f16f9f6fa739d', + 71516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cdcd12ab3b099a0496dded34b3d32fb620cf8eb99ed60d5a6837dd5e0deb2520', + 73864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ee0c05257952ef8137350bb760ed28e00c8eccbd01f84ddc600c942a639895f7', + 74484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4151e9897ac2e7871a3eb4165ab32867d689fdce600165c38e11f7b7cb4012cb', + 74548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e2eb823dc998881b19810e5840c43f2d1e35a795e0f82dff28663b170f8917c', + 74528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '264d2466b1afd285dc936980d8346c0a3b5076549f4db521d871d6906101c725', + 74696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1d5da1dd381f445407e51aaff2071cbf2bd47ba4bcf6ac86a020ac13f7de1bc4', + 74664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6047ec7638a256d6dc24b8d7e9fe65d9cbb82048b72bc00dc39bbc20029ba7d5', + 74656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4b652b0d67d3b075bd3313c47edc1168e24eec8e0a14aeef681ff3d29651152f', + 74692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '590abd7b7e1703c7c77d2a912d4fdff926283402acda248fe350fd7c90465e2b', + 74692, + ), + }, + 'AlexBrush': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ac8fe243b0ea5322ad68de5722bd759dc7a6fa01e72906d06ba11b3607755c8', + 76384, + ), + }, + 'Alexandria': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edba42d79df4cb3b9518cbc4273f1b29ef9ddb5881e44b8be9f44a579d92bc54', + 101496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '600f1542157d090f124d634035219851ce605ee1b40c2e351ecb585302e46777', + 101972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '404a90cd3a4556598421a4dac57c91c07170c5c8c4dd877d103d4f9b4d01873c', + 101936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1dfd2c8a53d0df15767fe85a72eef665ed09d32e1b70c72fb44814e75ef8da8', + 101580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b662871542006969e9a48d243dd22bb084b2cbe8ff6bf09997764ba1aa4f142', + 102848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6af6deb115523303dde0b0201cddbb2fe95f9de222a3841593f9e366cb30965', + 102956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcfc622a73c12a2a1c3d2020e27ed7bc714f285f375e7542fcb2810ac2196c86', + 102888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c975d2b33340c2e0063bd4e21ff7dfc56c9d0c7666eda675b8aae088a26e270', + 102936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed235303247e52aff2765367b37399bd979e6ea5a79da7cadaa63481a3647002', + 102720, + ), + }, + 'AlfaSlabOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8fdd2d13c762eace9a89ef14ec1439f788062d7bb7dac53d3dc1e4da50abc78', + 59060, + ), + }, + 'Alice': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '211fc6ff9152275a3adafaa0877008d29b5f70faff345f933fe2bf6cdda40648', + 89656, + ), + }, + 'Alike': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e521ceb9da9bfed71f56249a6ededdf1b63de9e40e5f5dc3f891db0d95f392a9', + 49924, + ), + }, + 'AlikeAngular': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad0354ce52985db5c9fbe1992d207ebda81b7f3a41aecedb5dff39df9ddd3f19', + 44400, + ), + }, + 'Alkalami': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc760741f5c3ad69c79655248a832f6e329340e120c0b60ddcb159e44ebf2b54', + 123592, + ), + }, + 'Alkatra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66871ed13d429419b2be61a849be012a652a6593ef2e8efd154468dabbda51ac', + 507432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd448f449cfa45522b5b65dba157525fa56838e4203d786e3096f473dfd30a65', + 508816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0e76e4e241ababcd7535352a6557ac6012c41c356a44c669824ca354393b7de', + 508868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd486f50e52f641f79456dbc1efe2214a0231f6e0a8daa850eb4d79bfc5ec3bf0', + 508092, + ), + }, + 'Allan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6af8f59b73a97c889439b898eba9bdd1c0f9059b2956d93f1dc71e7ece4d93ea', + 28924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e1c058c7e2a98326e1ae63cef4238e826976fb6008082c497872c59c7c7eeea', + 43028, + ), + }, + 'Allerta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd25c35e899945f7a79cf7b26fa0a7cea45a936b8f266c353ba9bc244be1d9201', + 15220, + ), + }, + 'AllertaStencil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14ad8d8d5ad8fd1a841290ae1d281bdb7e491df21221aef4c38e5de309fd7cb6', + 15684, + ), + }, + 'Allison': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ae35e47e9bd5237b96af04f1f2653409babb0d3a63add964bf90c8f02067d69', + 93744, + ), + }, + 'Allura': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e712992f9e6ecb3eab1eb7e0b0dc5903ea40467147f930e8e3728832e42080b', + 109228, + ), + }, + 'Almarai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5d7f40d7405e8d9a3265b476e669c46d8d3b0948488b53af22bb10fe866ff2e', + 85828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f2466b3d46768b6d843d555c30e9c4ee86d6aa3ca6a6ab1585077306ce6b33c', + 85912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '479519ef7c22fa6e98b7fd50e307637660a3fd14cb8f280b7577b74118d46c35', + 85696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97bf34dff026b7424e006de16896aa6cb4200d7aa405a1d233bba6e23b4b1c4b', + 86588, + ), + }, + 'Almendra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c89f19adbceeb351c7c89568fbeabd3c801df1e262f84242fbd01284dfe5ae97', + 57300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '40a5892e1283273ad00379928c370f78309c9a17627ceb57f678606ef2646daa', + 32852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6064dade838bed7b29151972ff2740044097f5ca6a1ed9450043b766a07506cc', + 34200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '44a9959853400a337d8d6c8e144e74380d13740a0b357b4169d241ba05c6fcfc', + 32964, + ), + }, + 'AlmendraDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83d146faecfa0ccf42536ddc4acf30eeb3ca34f6ebc1c923c80e72a8c611b70b', + 36816, + ), + }, + 'AlmendraSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b2742a31660bb8974d980f89345e91bfa56beba91c56c50db4beb89f5d56c81', + 33572, + ), + }, + 'AlumniSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77ae0220165c80139daebf2e8f49623a505a37697f7f3567bad516c99673d475', + 63948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86381a805fffd7925e88baea5e3aef63bc8bc02601dddaafaac2a3a7b596a507', + 64160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48195fc52bba48d4aae17434ab4c940bdb23655fef92a72b168a3e98cb72652f', + 64148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '102625bef3d634088ccb0a72f0c9603bbc3fbf56a9267b5ecb70949cc32c1cb7', + 64208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df4aa86779dff3dc64547fcc6fd496de240317df0b2ce5c7cbc13d2ed3e67e7a', + 65004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '083724094394ac708c2b4ac7e86825934248caa8eb571c2080eafcb9e3dda5c1', + 65760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb48e436ef2fc6146d53ead9299e2c4f9989eee0e7fea81d0869efb87778be3d', + 65732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa7ee1e8ba236d47959a019871d5dccfdafe2d6ed529928a3b836812284d047a', + 65784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '298f4e2aacfe9ab6d30dbd48ba882e95ea5037ef17543a00303261f06206e8d9', + 65476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0e6a68df234c2ea60f3215dfe12225a217799d4572055081acf8ff8af9c7143e', + 66616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd98f4c68a534e4e88737909729a2a4db1587f90f033d62e49dab940c120f925a', + 66772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a0125ba51ab9b6ed1d9ce4e22e87c3557b2be10e12171004525ae4fe7c8f8b9f', + 66716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd999737b2777a3dfd84d372c3cfd82bffdbd9ef4813611558ee495d80ea605b7', + 66640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '79d1f5e82d92e0eb52c10eb0b5f0aca458e9c76eccc6e65994cfc545020155d1', + 67532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c6662dccf99e9e7e6dbcce9f74489a65c018f0d8a0bb29e1d9882e2e689d202', + 68384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2d99acad6d267fc3ef7853018117165fcb4be2578f0ae6993d9c3f7fc6f82bd4', + 68292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '37b81ca2eb8653011663c66076f82410a71fd74c7ef5b1c073e7d783e58509dd', + 68360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '40500c3c129e1875dc831ef647319f4f6a5dce4d63f5bc5f894e4ed806033a70', + 68168, + ), + }, + 'AlumniSansCollegiateOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca6f29215b15d4776cda975b82f6b63ae94900f0fc4e63231e89265f9afa8b66', + 110172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a844e06519107f2be9895852a8c0954938626683bbc635fb26eaa375b14a6896', + 116612, + ), + }, + 'AlumniSansInlineOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '516263463bde5fb2203bd2bf87a3a495f6835f0a38cb1ff103dd894541a41d8c', + 72424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3f6a6de175370470fb1e241273f0e08858d91df59221bf985e49e3b4d9e577cf', + 76416, + ), + }, + 'AlumniSansPinstripe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99471caa4e8f6b3abed5d6eacb7c920bc268b810cb14e4547ae7b87a66a8f07e', + 76104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '728836c8129b351073732cc2f5cf8d79e561feb35632defbe7ce35da6f0cbfc0', + 80984, + ), + }, + 'AlumniSansSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3886df9b9c705abbcbf09e3e01b791d9da4ca18698e6e4e9e886cd863c8dc50', + 74352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e28a655bc0865718597aabdbdc736bf466ef926cb7226ca95b01ac9f2d391291', + 74660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22b6c8c72f90d1cecb23741be936f23c0a324f6eeb0f31dd89fc1eb342771023', + 74656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a0ecd85a8247ed6ead6c92ea9db4061e46485b29cd09b897269400ea32af01a', + 74668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d452ce6c21022c62463c99741bd250705755355339fef325cffd62c7123dc64', + 75676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9c05262ab392f5ab4343f26445d76a64011384b53cf218bf5640b5595bc537a', + 76384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45942bb541250b9a8c9e79eb91076c40a73e05bc525f0af4ea07ada4f2ffe9ae', + 76336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc2dbebc80329b4b8ae353ad50b67dc8d89bf894052cf4975383a99783ee5c75', + 76368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27b05817dade14162a4f6ca5b44b8cfb344ec4cf7f091f16863a4fa22c9eb636', + 76108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7f4f7133e43c0a912599e6d462231e07ff1163804050b5d630ba9ef38a03693b', + 77452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07bb906a6a0b0bb139b1a37b0d5a8befd38e2852cdf40164f0d85972ac0fa983', + 77532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f662fa7af03d313df913597cf604190ef5a7ced9ef5a3ece6b52296f9a6e9840', + 77516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '43df60369752ba31cc1ec09c4257938f58441677dcb9a4a42adc48868bee0d7d', + 77456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7fa288b8962620ae97f09486cf09deb5b74aea7eefe1962d8c535220645d356a', + 78500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ffa984bfd9643a7fd315558d3ef85d4851495ad93280b03b56c6077aa3380dd', + 79392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8a2f58e7f1eb2de55e96a7d06fcfdac3d1dc2bfc120c74dd97f58a1607414143', + 79172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a581494315827d959e46e5f2d9af3004949ba5bf93069e6bba65e0461452189', + 79180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ed477c541c74fa7465c03013b9c20578f19ea190a1ea2469f6a5a9b80f55a5c', + 79020, + ), + }, + 'Amarante': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a429147d4b4024562801d9dc3eb8869b757b41dde1af156fa1eb432ff47f92ee', + 69428, + ), + }, + 'Amaranth': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b519425de2365dc4a53c27dd55880384b18f578775e67114a74efb0d13302937', + 41744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '854a58bf0bbe39eded5f93f8c6e4c768b00be5d2cf3cdaa1b13e2a4071a1ca12', + 46900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2a2643667436312d35a40078311a26e83755176c5524648da1c950e154aef86', + 41216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd6655ba3e65ad871db0ceda84f08f1368bddb9f2b8e5a156d21f855c5086c08a', + 46680, + ), + }, + 'Amarna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57e18498acd41757572de84b981e74083eea92739e9bf2c80746a1fd5b07e24a', + 33984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8ac0b28b7f52be145503e78e642bd7ed0aa42be64f759b6c3020fa6bd5e75b2', + 34020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc25ae2a79651fb40d0f05b874a06d44938243aa6c2452c54118331a64562208', + 34052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a06368fe643cc38de064841b729e1770b9ed031528bb3822bd3ad9c684bec5e', + 33916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '234f210dae9b5651555b326f3f50d6fd019b8edfbbcefb77acaf7255854c05fb', + 33976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a8eb62c0957cdd3bb6ef99c5cae53fba405c72246a27d7df869c6153d534edb', + 33984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eac582ec929559fd6ccfcd90f5f2b2c07a101fdaab3174d107e6873a3596af05', + 33868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '85d4e341be053eadbefc635a16a662259c39771ce1bfad0503ff2c7a863ef972', + 34396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1370208a15d95bb0f0ff6560906cec92f0b56949174c72eb6e53e68427af0cc8', + 34480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2aef20fe78bb1245f604662cc6c6195a6f5fd3385e0fce3fee9dd93190df6d30', + 34416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dd1791014969aa5febb3d2887e8ff48e4533799d81ef89fdb0713d9d6724d7c8', + 34156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '146aeb3a32824bf088ace247f898d0039def602d85f1ca67f50977f3817b766a', + 34324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '11945ba63c8a037cb8016291f0adb7929c93053df394cb1e0dbc62dc5f43a512', + 34332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '88aef986d7fc5044bf3f88c3fcbbf72f9dcc491eac123a5af0fde613e93d9ccb', + 34216, + ), + }, + 'AmaticSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06a80a564c495610f0e552c7088d9b2cba6293c27d1338e0be693a6c51ef7819', + 103632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce46e707c397f899873ea030db0c393ea29a7a1c3051a4c4a7a8c59ec987ce16', + 101308, + ), + }, + 'Amethysta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '201afc22cf440d48eda7473ae791afcf470006f1c07deb9e78c1ca67de8f1b89', + 20232, + ), + }, + 'Amiko': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '939cdfc80fa6aa02a7825f0ba1b649e6b1c90a6781189dcd2050e10cb15642db', + 122356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf0ddb1a0ad742f6450e8e6279c86a672152661ed925823d61d34b1da309bd11', + 121820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e8c6780a6f6cabbd4019c8d0beeb9177d17fbb576265c2ff7e8e2766836ce15', + 121340, + ), + }, + 'Amiri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61e73c93b4892da99e134f6d51bb2fa003d74490589534835f2e6663eb123c95', + 385816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '087dbc905b0464d41117744b9f63611c3741d4892e905d205e6fefe31c1cad50', + 383116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f28923bd89df53a46e4e4e2be7925df1ad8a0b0468bffff1ed160c982987284', + 368592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '28deb67e11ba09b41ef4b2953a960a8e49603749c768661e38b77303349fb2a9', + 364748, + ), + }, + 'AmiriQuran': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00d590a2302f5305f8c0a41016dbbd768a70f54b300ebf2007b26088e8ae09bc', + 130160, + ), + }, + 'Amita': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c64cbfa2902d9e6efa46ef0cdd549aeb41343180d7339eab30b5c11503e66333', + 132428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa8e9f127f206a0c8b60f87a39f6c7bbfbe845b2d37951c3322a1ccda46848a3', + 132364, + ), + }, + 'Anaheim': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '262a69303323471ba5b45a8c345984be137c9624b962ccb6b04136465cb0a516', + 65856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1279770d0dd96c9669fc0db923457dd80e13a53628488d9e95b5469ae9cdb1fb', + 66156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd26100ec43c48cbe7b49eb9af762fedeab94ec864427b81ca4093e0c72e59e1a', + 66180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7ff02ac9a209ab0157709412989ebefc97cba79b189b5cd4f9e996ec38b82e5', + 66356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b594a3c5027823dcc91220c67cd56312ecda0b41c56f58ea0c37690695807111', + 66692, + ), + }, + 'AncizarSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e3dedd6f20865f18bc2bcda9ce54330c0f5c488fd12e13387d31d04be29a23b', + 75052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4bcb1de6568a99f8f48293ad129784f8c300ce6811a240887d0a8b8145e6cda', + 75144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a14c1f871d60138916356ccaf360f4e212f578a91af7859c7c3eadf86c302d9e', + 75136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9589628baabb49e576bad3030833d2b42ed14cdad132f92dfa828a2bc3085f44', + 75052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd77fda73b1890f7d2ceac9010d7b317b96692038d21fd4d9a518522c35e5273', + 75148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6949099a0f5513a48a3210bb7126f9c27dec4859d30862876e0fa981dd859ba2', + 75152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c0b020cb5697cd61bec1e65e4cfdad1233235b417adb5207d9775d1f3bd3d35', + 75132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9321787738ec91f893fdf2c73c1c8fc1bb018dac093f40dea9e452690725634', + 75124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60fb66a2ac685a24966c4b86faf5c27babdf92cd34e5edf158912ad794f4cc71', + 75096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '28f5a68f92024da25f5e179a310e8433f3f4c6e3eb1f07837e2a67b4acbf8b34', + 77684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c5ab5ca806ecace2a46c76ab9427524756d184603f3dca77bacba1d11893d4d7', + 77808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd59abe7135d0f21436620cd884629594a52f363307d05d6b72fc15815b5d7b54', + 77780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c3ddd49214c2e15af3085ce98254a414a6819f8c9991fb070fcfa10866c0214', + 77656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8e79e2b7541ec7c73ceb9662a97f79acbdb815b5c0c42d9aaab5563debdd842b', + 77796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '484ec2596ab2074be6888b267f7412894377f03bbdfe6b3c02f6152f65b9940a', + 77824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bbdb889a15d02598696a4f58c6ba84874ccdff38ced4a6153656088a741d791c', + 77720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7a5611d078adab99ad8a62dea1dc1fda6c7efd43c4852e8d37d04fb8daff1173', + 77892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '72abb16f65be3233d9ba0e21ac957763a866adc6365ae8d4eb07819ec97bda8b', + 77832, + ), + }, + 'AncizarSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12c3c6dc6c979bd386e5b733eb4de8258b30efeea8dc9095a7f247eebca68590', + 78976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05a96955a3928b3f2a0b4c35c6a649fbe35b60b5011a84828192f72f81c9ef30', + 84408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76a79c3bae94eb6007a79c97903b02830cda9b3259d9c5baf6fabc7f442416d3', + 84452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8a3e7b691bfcd9ae5ffa6b3584c586f07b532b84116ef3ab0d37b5e5b3e997d', + 84496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5dbbdf25775ea6245cfb664f83c7c4b4d2c486922ac0d364b7917e781b69bea8', + 84472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd6dc2e62ef6201246d904630eb57ef025f9bb6538b719f2242d4dd53b5effe67', + 84540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '475c76774c8ee844673c308fd50bf14d2e2f7980112dc5dd129effb26d0868fd', + 84500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e5addea3bfbd32fcbaaafbc037996b318c507b49256d87b733d05010ff1eac5', + 85284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '37a68defaacdb07451852076d89d3e60ef86974ca6e0d7bf716c266535dcb22b', + 85252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9acb1609ffce6b89ae97adc9cecf6849255962790207a90dafad5b762f238ed6', + 85408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d27d5ea0a715273c17a006636718053fe27104c19aba7b8572fc0635830d792', + 85392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dcdff5b261b3450ccb3081a28e4fdd217c3623ce48a4f38fb07512bb6d861376', + 85332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b7a45769911cc4b3dad3c290480800835bc91dc06f23aeb238c895d124c6ab7f', + 85408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2843934ed603028157835afdd01e842ea0874e28f0173574c17414bbdd242080', + 81240, + ), + }, + 'AndadaPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdd533da47414143ed198620de5d0e4ececc282895373d9b823fc9794792290c', + 90980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd1d8f37886828d52beb48e06e4c7e9354327382ed44b3e005a76e3f1c08f2f4', + 91084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1811b20fa167752ba6a9160e2a6d384c19dbaa76ec47f0758fe814372d34c1f9', + 91116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02684e8f55708bafc0cf1ed1d34739e3b209995d18115b3ce22ea4292181f305', + 91088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cd2108b1ed006b6d3a9d87caa2f01a97e7e8a88bbaaa2eb5a966328a8e59362', + 91152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '63655adb290433660aeee9485513654960e8024259ea0193362db5b779aa436c', + 89844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '514514549836607470c60d6353e76c7a29a31cf351205e3689baedb8a24f7012', + 89916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8670c228f7a104995a46b57bbbb2bbef6e88553c63426cc1a759628ec0df1899', + 89924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1eb07535b0f47b8881259684a273cb7bc0397d815d54363cd2cb49d66ef86917', + 89860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f9cdcec8417afd85893b4b52f9596216ec7770be3a15ab573541430796987af', + 89908, + ), + }, + 'Andika': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8be73e4c6f017350172df212f6db5aad00993c3b0b11a0dd2670b2f6a9396a1d', + 321288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d499a94b7e94b21b1938d70dd7973deb0e25689df78e0df25f857911ecdbb3d', + 344736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59e9bff0d4c1a9ad3ed5ea196ca42e0ff05c8a04b2f6af807ae4a11617cff3a9', + 322828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3c82cd62f00942ab1095fffaa6d7013b652257dd5997708c0ad8645586b38d18', + 345560, + ), + }, + 'AnekBangla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b16518ee7acc1e2c04a86aa1049f935d1ca5976d1ebfb4bc752ebc3654422d0a', + 240720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '926add559de11b5b16704deb02bc731f236ee3a7adfe4e6df27ef8ff4ac4686f', + 241884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9594cb5a54c4a9fd1f4d1a87ca89915f9325a2a4b0a3c3b13080ff9f91af315', + 242040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4dd9a422f75bced01e2836ad310872788fc7e7ebcb227acb50652a67257a9b4d', + 242532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6979b217caa67dde78c615f306b743bc16e5526e6292e60e24736303fab0181', + 242280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e2624d01cdcd4afe5a1cc744bba11d4b4b61e43d2302b4e29f4bdc4fff8c375', + 242728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a4d3b31f38145ad731a9ce9e4026448dc496b8ac2eecd41e9248e5141c80f73', + 244248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db9c6b4f6d2c1c49f420a3ba91eec811a11298b18a536fbcebcaf538048fc4f2', + 244804, + ), + }, + 'AnekDevanagari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c1aed649c116fe1d50151ff4e6079d23603d5086cf06ce7e27ef5366248fadc', + 404280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '971491dbb12eb1db985a2a0a006eb3c36ec05c63efbbf9482f821ce4cd417202', + 404944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3648e20c677363a65c416a73b19c34d9b5178596c4d9aff9c45efa1792e0e4c0', + 405416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71a0b6fbe04ff9579d7200c38b42419c201505fcef46f65818273bc93391b951', + 406240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd501eea0f183fd0beb3755be73d76c93d07c5d3bd84a460921d88894375f495a', + 406116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fc5d26b022be388042b0259bc23437016de00f16039ac56e550e2331058590d', + 406884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c99164edd939c0121d702137bf60fcf55a94d06e62022a15a1fba55c199633b', + 410184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2aeffca166eb0b892d4b0b4b50d3c518a212bb024783c356a9177d02ef74a2cc', + 411564, + ), + }, + 'AnekGujarati': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '912ad9dc71ac5858b22a139b059f8f8782ce6d479bd8c8170673b9cb97c667f2', + 285304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7e7105e2dd60b65bd5a92c193df5b99d29eb025a5150b8a5fdb4478b056100b', + 286428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c82c49074652ccdf76ba0146a399dcda415ac0296d504f68bff41dc796b6a04c', + 286340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fbc2844ac2acec676c89f920b3411be47ced4f4c8c4d9729d4d1860a255e33d', + 286592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b4e80f840c640204af178925abc3b5a5ab6cfce7636c621c73b0d0346222e10', + 286384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '04969ca3a8a3cc7f1c486035089241b74aa6d4b0d4e50bf2e25ff56a9bd96fe1', + 288056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0fee872272e5926fc5537f26c7eead19afee3744bd435d0de639026f3daa6d10', + 290028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '593eae7ea849047b991598c369665814ba8e02a35cb9b3bf1984c8160a6fc421', + 291780, + ), + }, + 'AnekGurmukhi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1aef5224aa27e4fd55c52d307ce9292bfbbb04808b66c70d355d3821c368b93c', + 83508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd715022570bdb0a0ef3c9a1005a31e4799139aa46b6e2bfafce835d76aa2836d', + 83752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15294252d113caf41773a2f73414e58acbaad024effcb80e888a113f3ada92a4', + 83752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '160d926e49ea00d5027bbcf075265a3e4e9abe541e81a7594837804b05b3092b', + 83848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30f38e848ef70492b0381c266752a791e255cc7f5f791a5eca87f3015117a338', + 83544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dfa31ce36839865e3832ccf3503b927226786cab3a6c74767210d4c301d2be2', + 83816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '096850af2d86eda8255c9607ac3871632aa215d35891d1db8f49fc21f5b5c20b', + 83960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '605c88041154ad7df2da3f53929020ce7ee4a64157880c17bb51b47b5475026d', + 84364, + ), + }, + 'AnekKannada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85f56867a7e6c9a9c9b1f2d9c0e0ad07919740c69fbf1030c09eccca488ee5ed', + 240360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '687c0ce878c2e8bcdbfb94a710d98a7743dcdd6d8222c9533d3ad00c9bf931b4', + 243160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ff0858ee70922f2ce9c0803e691e896b6d213c3c8417ea9cf29c90384b1dc92', + 243280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4dd3bf23d7e9a03e75d1bd3d5e27250f01470f5032db3974f56db5efdeb6587', + 240908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c9eb96eb209bc8f9463202af9e467969aa20e4e56a5d6e835bed93657feaed5', + 240272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '117229409e0bca5aa1e98ecc8e2fcf6d25c0727658bcd084308c7833884a5bdc', + 241564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44a9628ce9c4e1b18f13e06bad47ab4ff31278c3ff691e8450ac2eb9e12c6276', + 242816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1671191b73435b5405ba4bebd99ee31301618b7cc493f9110e792b09569654e', + 243652, + ), + }, + 'AnekLatin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '494ccc268be3c9bc8e8461a00cc49112e1b3d34a850f4de59eb6d2a9a9b717ec', + 104188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1916b4db887483d6efcd631e1ba2b34e8f274fee7d0817bc14b52d34f0190463', + 104900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e7181374eb188c72b0e533769189c5d5f6b5145d11f40d09c74e10cbf97c083', + 105064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1800c4b8f75c85d4f931e3aec18fa60bcc31491a1a13a16c3d8eb4d0729bef6', + 105044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32904955ce9c5b228a72208adf111bad105802d06bb79a59c71f11f76661d469', + 104816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '074a64c32426c07a2af554d62dc32eaee604d346b8070ef2a5c49c743e1bca02', + 105204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '825af35e393ad167c65fd5576379c94932f6364639ef39f70df0bdf00a4e5114', + 105388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1177f3eb2120b3a6918533a9fb53ac1b1cf706e3269f2dbbaae92070d4b01eb1', + 105344, + ), + }, + 'AnekMalayalam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b619084c47d04d063551a70ab7c959e0f4360a7348cf1611f0cec6815dcfeee2', + 107536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39796c4023894ae6b662986a959ae4657ea2dd31e4e8083f28b1dd8f2c28e876', + 107804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3dea4f4ce0e66cf2a510933fd719255d6e2860bea7779cabcbe490ffe7b6c2c2', + 107844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7364dd20d96fc1501d3bfbe19dd72e0bc1bae942d5cf3beb9b581e4884329f72', + 107796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3418e3096752661803d94099bdead2afd3d0bcec77f439960e94b159d44ce4e', + 106992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f78beb4553882f8c5253afbecf0d6e0f8338218fe8d2a685a4c69bfcc05f2a8', + 107200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '783a40372026244ed67e1ab38df7376d1b2960eee95b4b1eec67b1ed076dba98', + 109832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d5384cf7cbc37b8a82f6e3e0e5816c184d7c10a6c8f13d29f4948ebabf53242', + 110232, + ), + }, + 'AnekOdia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48e349222ee859a7e24086bce60f0a963c01939337dedf4ce19a03937b5719c3', + 163140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a15f9d69d42eca24780b815b789f4496019a8063259c821c94eebd8faa7ce139', + 164252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf6c0d560a8eea6857c71099710102f0e4b808968ec4a3118ebce412013d6fe9', + 164388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0fa334fc824fb09f97abda39ba6e235009479240d9b7265c5dac0bf2944528f', + 164332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c660b1b6d0d7ade136bd38dd7e5d5e217410b79fb989adc2950ea913fe79da5', + 164036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f9fc65c5dbbc02230203c3219a6abf26ea0133cc369ca38d77f446902d7392a', + 164360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bac213a8156aae4ab8a31c817dbd17f34503edcd6b70b5d8fa56e30ae8c4965', + 164712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f46e2aa78c0e388c5c6176e21529e34ad2234a66c23fc59bb8c68873d4af5bf', + 164816, + ), + }, + 'AnekTamil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5543c644c206f162bbb620d5cdf759b1e4870d69b35010de297f37c788d91bca', + 98556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b19c7552a8c7b12c0c7ce321d48cbd1aeda109b990a115b728f438008620e2af', + 98940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '652374f53fe2a182d3b3f591ab4f0629ffac6569245fc13eaa9b792f3e5b9945', + 98912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b663e06111ffab88380ed4f409376b898099906780f55855532e22d5c074234', + 98964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17d257a03ab5d05adf5e6cc1b4f63151725ba2ae63e74ebcaf6820a4716d07ab', + 102776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f03b8704865b639b36edc31211d7cfe90942d1ca6f8aeb6a9b30ba6ff41df5e', + 103068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7cb999d1f788986c3fe05eae35e8a968c455403e79d2ab994369a731744e0c6', + 104496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '359e0241bd4f688084d4832cd7989344ec1f72eecd8fe236232393f9dfd1c4c7', + 104944, + ), + }, + 'AnekTelugu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a54cf2fbefa93f1754508f0735d1bb37d0769e26028aae8d3a6840307034e8d', + 306056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '234a3b11957a67c17b08c38fa1390e95324200f0b51e588c4f14e1b7ff80ea02', + 308840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e25426f380ead98201da5b11122ab9ec02a4f7364dbba6474804f09aa0cc0fe', + 308472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4fd813923d8981e7bf31893347dec79e97934ba9935e933be65512a29913d8a', + 308572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b059c9f23df39d138020bf35bea401bbce30cfccde8984e1b2aa6802a74c333f', + 308172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa8bb44e770f3b0f7e3ba7c2a0cd3d51b7212d121e143f0732d0fb89e66c8aa5', + 308964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4177b841f102fa0951de6567d653564617103664d8faba28ed8c33d32221f20', + 310200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eda5e0817c9c94efd72eb26d86a77c57a4e519ca3ac95955f7a9ac81da00f58f', + 310964, + ), + }, + 'Angkor': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '265909626caeaea30d32cde547a8dbbeffe00b8daa950a7b13c8145b54a97505', + 38724, + ), + }, + 'AnnapurnaSIL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b7b182a4539603ff5059767d4264ecb03a04df70150ff560156ecd38e211faf', + 181716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10a71f76936d7c4aef493065d97a5e1b249dd8fca08322c3e6581480a9dd0292', + 187932, + ), + }, + 'AnnieUseYourTelescope': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d0058d8d4be3c2ca3181dc8cfc87a9c428ce390866ac9cc54d18529304892d5', + 36092, + ), + }, + 'AnonymousPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01dcded8684d17dad45ee7508eac748af1a8a688849b6b4ce4fbfbde000231b0', + 47500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd618f8786968583c9ebf1eb78afb1ea1bb30381119d1be8bd9e3b7a98267b715', + 49592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06573650ed6a5ab85954135e00e4e14b3efd48e51b66729ec1c752016ff2b5b8', + 47188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3414a00e2c91b3e991a49064a187db77b73919f80d51ca9646681ad25e2c0927', + 49316, + ), + }, + 'Anta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ae97fe71a58efbc643d4f14321f6647139063c17dc68ea5977866642b79765b', + 49080, + ), + }, + 'Antic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d7875c19534a59e5bd71f1c763e762b5f3e0e4f61a24a67a2a0734ca1142c5e', + 37584, + ), + }, + 'AnticDidone': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7001ffdd01bbbd0574354313cbb159ba3b6412fe0b41ee227eede901dd906618', + 34000, + ), + }, + 'AnticSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df26e6a02964ad17592b86200f5efcc6e2f8b27fd84b19a4f1daad01f1cd05f4', + 31252, + ), + }, + 'Anton': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '670f204b7a535c44852a130080783e1ae0c90e59bfb6d6b4ce6e94a3921456a4', + 87420, + ), + }, + 'AntonSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11c2d64658fcb6548d763397e46cda1b2ecf72daa70d4971db4bf5a6977858cb', + 99896, + ), + }, + 'Antonio': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '636f41672a7f6b58bdd2191b6246bfac31bad6fccb2e773f714c7a7f83bb21f7', + 36664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e5baf43be240ce8618cd4c512412f67c646baeb9760a22fb747da084fc4c0a4', + 36744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0baec743aef0ee04ccdd87e52ffda42c474d7e79b1ec8d11bea00b1f03e1c663', + 36756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb2ff0c68d43fbd73e165adcaf3f1c7fab294ccc83f062e9bbc0e73e0e13b938', + 36672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a009c1fa49ec81f0be95b7d1fa2a4a53e8bcda24af7c068145f2576449b0490e', + 36748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0928552d2e0b27a594c828fb302ada7685423aa6cfe3388cfd7e43ec7a37712f', + 36732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40e7a8d1869d3261eaab2ecbe7fc74de4205bcac5eb7957ee0540c25e8dbfddc', + 36772, + ), + }, + 'Anuphan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a096663c3c4bc75e16fd6dfaabb6cd8b435c38d142b2b6203abc153539e8eb7', + 110212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0329a10adc84e79f818963991efe2306c54f1ad2286926b17a769bd0e844d4c2', + 110388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '944be539723d679adbb3e247996d9b33c9e6cffe73ae1e94c735a8b3d99b6eb9', + 110248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '743dbe1388c8ce736533742fe922f7c7f47a5e332dfe3045bb6ec9dc63606b10', + 109856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e7ef1edcf2ec842777e570674db7d097562a0f1b7899f0c0bdd4577de553e2f', + 110312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc67bd54af79d27a5cdbcd24d3aacf5f0c7ed451d2dd1d1e6e79368bc8caf10d', + 110236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50e15670f34d33a64fd54b10ea4e1ea173a63c238b772cc9d7ab93d88e0ba3cc', + 110088, + ), + }, + 'Anybody': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05b8680976d76291640bea6c27850d8a53213164ad48dcc33a55891682da5120', + 59196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd0fc444496194916c9a512ec73758b9bd4c31bf089bc5ff2fdff15a8b499329', + 59396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3d4743b861f9dd0ed280f72a8f10aa3b38ceb18d13ccc59af61fc66a1cf966c', + 59452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd015525fd8e1ba4f615aea686f0007c239a780020f1cd2f372d45f98c54834e9', + 59548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '544656eeacc8962b949dd15f261cfab29d4238e84f7d9598cda094ffcb1c38fb', + 59608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81d4dc82865d1a93f0b06d70767b7c55d472fa5234578698253a8fbc38827437', + 59840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6d2ec47ce2e2b3cfe850b3adf6860e28c2ba714b519cd290dcd62c615520533', + 59860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d86cc52b80fcfae691afa1352c7fb5d9d057164868306ad9712aaf524c8243a', + 60220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c015dd9d58dd4fb5ab3ecf53cada09dc80ddf2e1216d7daee00c290297f4b8e', + 60276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a537a21f972c6a655936e8e0044625aba9abcae45415dfdd97e9e6e8d596cd59', + 60544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'adfbfaa79dd5a1298ba7b062bc5ce325e0b591ffec25cfdc05b032912bdfd81e', + 60800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1ef6f772092d3b761424dd5cfd2a05edb9a73ca0264c50e79400287f135db00', + 60812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd3a3de3c4f9954e42015dd163bca7e0a44420d656b7ea469628a5966259fdf93', + 60808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e56280cd481077d81918a1c8b3fe478d7694c869cf377005ed9c62f2cd3b5f89', + 60868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1efe33151e4ee2f20492e01443d9c524c06fa60ea64ecf05d2fa1e34c57ab64b', + 61180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4a51e7763d024a883c61fe6bd761b11e972b5dc035d8f31ea8379be3692fdd4b', + 61140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6817d94f0d958db7f50974cb7a8cccb0f201b9ff58290dd84d4cffe14843151e', + 61516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f2bbff0111626c3a7f5f17a04674e85c7c675a387aff69439c79f19da8416728', + 61476, + ), + }, + 'AoboshiOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2034cba1eb814acce447cc3f7bbf7621890501d1a7c45b637379130622f1d76', + 71032, + ), + }, + 'Arapey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5004151efdc754bbf3d2a02d02a3d719a158927e71fa6e447c22e636025c6182', + 24124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '53aeb10c95142fc8fc8169a5f01eb736a1f12eafbfd5d3c19fb3b4e89df7ef33', + 26816, + ), + }, + 'Arbutus': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc275606ada840841239505e30e12169121ecc461d2e23a845818611870cb559', + 78872, + ), + }, + 'ArbutusSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64aa4153cf914409eda45993405dae73afc1b0a3433ba789a89d80acd98cdad7', + 36956, + ), + }, + 'ArchitectsDaughter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3f9b8f02c3b6771008822c554ee81f57377d7b2f38042382766f1ddb2c3d9e8', + 28784, + ), + }, + 'Archivo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6632c32ce2d3e5c893ff6de7c204527e8db30a32815c8bbed580cd367efc5756', + 110576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1029a186fbb0ed87b10be6c699562fc9e78a52cc25baa23218799dd063acacd', + 110672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8cf043f244c29de882553b1b6a8e986b77102ea15cf48cc475406eed72742741', + 110672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a33726bd93971b6153d01388ea226fcacb4fa0d587cf22291eef1ffb382815c', + 110684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd506bbbb11b80c07b2667d76b0e787b884854b8abb3828dda4063e80c2618de2', + 112112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd658c976dbd2eb9356e2c8bbf6ced69937e8d2b0222d284d3f49108aba6a2072', + 111848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b02ee261dc0eeff4c752b4920383d4da0bee05b97f24779a0a999df183b9546', + 111924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02f72d01b2f016cc5b58a30ac12183da5cf2f40ce289715aa752f96f9d5579b5', + 111924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ef89c09e954d87d4412a922541c99e21b22f72e12c2d71ab798f61003bbf47b', + 111280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a6b1634671f6a85f69c6242abd9c636f125ce0a7437c95969cae471e8fee0321', + 122024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '510efa5b12bec7c34c5f00a106065029db4e7c02598ad9f393c3a858bb1286de', + 122124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2b896247776fb9f50f3f790cda1984a5dd12ca1d9ee9a728af3adfa35741fcb9', + 122008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c76340320268e72acbbfaaf286c667c209950d28a6cab15c62be9e53b8dbd625', + 121868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a73138b5d8edcaacc789ea0d866f5286f3ad14453f150e3cdce8595be5983163', + 123480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a95de7d55a185700f364ac8d8d9bd47dea9e7bc6ec9465efe454fae4e46d4d5b', + 123344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '30c765399da744b121a7e13643c2b972a13920be7d522a89894ce9aa3259e561', + 123320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '53a81663f873ec301042b38d5e203e972b8179c9d9ebdfaeb28e1ffc77ed1f7f', + 123608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9871c068f746cd4b74f665d6fab2b0ea837d23fbbb96f0d9a8e44a54e064f63e', + 123292, + ), + }, + 'ArchivoBlack': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34faa332783c7fd86f7134ff30d724f33c4fe7221f9ecb7d39f0fef2aa078229', + 44844, + ), + }, + 'ArchivoNarrow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9208b2965aece7734a0d7cede2fc702bfa8671f3d20c8f80cb4cae263172124a', + 58336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd969ce4ea404524fe7abfc10a82f9c7f19411879c6db5eb0ba326688be66b904', + 58732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c00c38640fb97f473e8ebba7f9ac02c806f2784f3940d1e936c3c9f0d570a76a', + 58752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b31d2e47484a82812b81000e8defb4b826c40c9a5cbb814df87669089c2f0afc', + 58316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6667d82c4ec62f365dddc615237e4ab09892103cb8da3e1588069988b65a9ca8', + 60812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1055846cc5035d9ad3a4fe81b2a20bc9ad8d612c8227d33b80cdaaef537d0421', + 61104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e004f27aeab8c27b1ec3e6047470732a47014c11f6929aa703de9854ef1dac3f', + 61108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3ef237ec5c5d6584effbdfd1a23051569447d6ad8243dba4e64b2afddd5de009', + 60708, + ), + }, + 'AreYouSerious': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbe26b85499639e930417e3e8f397f3a9c5e420845992051175214cc61f37350', + 149320, + ), + }, + 'ArefRuqaa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed7b426e20aebca4f99f89656a46778aeb3221c70bbeca20d08f171fc08a1774', + 108040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a754b5068ecb1ebf4feca6bd0125475950ed3e514dda11222f18174488daff2', + 121028, + ), + }, + 'ArefRuqaaInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f0bd7a2cd451b63d14cd71c080587feab47fccc72d308a0639373a8b3524611', + 565188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc71a0629773a1014d70e5c75f61726b9b7c4b394ef45623d637fffbf78ded85', + 628000, + ), + }, + 'Arima': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '066913c33aedfaef59f58e42d9621bd48964281af9729a5f5dd4130d8003cd31', + 191192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '288d0a054b754e612741bab7e8810764a786f184fbbedfcb4f7f3f89a0e71dc8', + 191812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c4b42b7e48922b9d8a4d89c674f3e87e6a26b367fc3a219dd4189a87379be4b', + 192192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81cd107dff525e0acf3341c76180ea7c7db242be4fc55912513697bc1a089b89', + 192164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e7cfdd08ef383a09e171dfb7db2c3db11ed535e653ad766e1563cc823732460', + 192568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef94df2a283e2cfffe90926751669e97bf55f2ab12b21fc570bbe1ae6db4995b', + 192412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07b88f1e5035ab77d666ab51b018fdc73130f1707d74220d1bced9bc363898ac', + 192356, + ), + }, + 'Arimo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbc3f5256cfcb1aa62736daaab3bea7dc85c7c68028cd408671a796537da3a0e', + 315684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '002d3cb118ba38837ad4cdb025675d6960eb7690e0ef89353f80a41f3e7c3686', + 318660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '178c35c722b85d6d7098a44b860e6f824d7a0d0023fa167c27cc7ee3ab793518', + 319656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f46cdcda58619cc81f0f28dc31bfb7f670a4362e13334d21be3c8c03ea1034d8', + 316204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '963985e80cf691a33ca6b4879232d4b34d3f8f631f0c6353d60a1595a519a6bf', + 337860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2fb92fa9dd6c38bc7dcec5f61fd16809f700585ccd6827aa40e5a580bb110ebe', + 342400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b3fa972adfc088a70ca629c19eddb4dfe479eec49657eabd9d8c2140cee9a551', + 342948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '39d6bb783ece1b7d01f2f8691099d887232af0b2f123efdd7689ae3f73c078d5', + 339292, + ), + }, + 'Arizonia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b76bf868308c2e7eea269280a680e1f2df69c357c9b33db8c29954a17a33bec9', + 88192, + ), + }, + 'Armata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7653dd9ee79fc9669bf68296b378d9f94a37e2f8fe2a8501ed2bb072ad55de82', + 49964, + ), + }, + 'Arsenal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9757c473ad972c667c92a15ff74b6d95e0a4741e4722a4eec103bf47be44329b', + 76700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bee163e9898f78984daa6bebd8e779aaa892c8812a22729a3dde73c8b0b3e674', + 82304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bbafa777794e2336df646ec8745ba5fc860750db2631b3339d642ea6ac92855', + 77216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4978f54bd9c49e533a76316c388f02ca281a4a721382532e7b8682ef904ba007', + 82348, + ), + }, + 'ArsenalSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe4e1da8eea8a5b3f0f5b03b2474de25632416f40d7cc8a42c635da7678ffa3e', + 94588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '763ec672284a4efccc89ef0218e9c8ab65be9024bb469d30438163bbb8e930d9', + 99980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c30cc2a89ce6c8c9045f1a16f3eb060c250010f2f7f2ab8a3895a01656945987', + 95404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c7ee10cfed6f2f48eaa7f5d16e5452abe693a973c41c98b26eae8c28a307a3dd', + 100116, + ), + }, + 'Artifika': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a900f1a18b1e9627c613aed7624d43c5e5ffbaaf0968936017e2a2918838ee7', + 36888, + ), + }, + 'Arvo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2b70322d25e32040c31deccb3f56947ebe61632c19e740ea0a81f1f48250836', + 20692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6b57e44bdf3bc032a049d141020c8db6434c6cc358c40f08680bfc8e877c12de', + 21116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe8bab8cf86b44b373c4e86d3ba556079197b1846ee09197fa51893bf956f383', + 20576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e4232699f459596e2226a3decec71fda8bee9621ca66321c5b87c536c2cf1690', + 21680, + ), + }, + 'Arya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4c23829c456984389c54c62397404102b5df80d21a65d9a5538b3e4afc3d4e1', + 107792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b72fcb901dbd0ff5103660a583b6d14a355154f25d5e04683517fa2e37ae098e', + 107528, + ), + }, + 'Asap': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d91e089cd2222d5ae997796c62592a1ef77840c880699b90564469a18b4b11f', + 69808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '694115bc3b4d3561a044982f6be3e62c92f0a79c9abce91841b20b0f99d521e5', + 69880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b097d4b1f6fcf7d67c4f1fd2e8aa1ed9e7117ccce1961c581cd2ce8cafb1478', + 69864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fd97001249a867e89f0048d9905f3b16853dd52ead9c74806b1e8aba0b68e23', + 69820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32edab4deed46a6159b35227198caf03c6792ccac48082c267e4b30029c64dce', + 69812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b276f19d06045fbf5d4cf8a88773585522c3a1dd18f476b392b5174aa492ba03', + 70456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbce273ebe576cc55072d77f2502f9fcc492c8aa8a3a1a0805897dde733beeac', + 70180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8599de209805bd419658aeda26dcc5feb54cbd43fe8301fcec852c7553c84f4', + 70384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd51bf1c6fbdc8a990807080a8c69cef7749bfab4922df7f1592931bee24ee56a', + 70252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c06bd67df7990f79b5e26677f315f874a0a92795511d479aa8a8bb3fdbfc6176', + 74252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a48e767c5f23d77bb976669a771b825cb16829d5c4544c73617a44bdfb84e188', + 74244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47174664b18a6a48fb384dbacb0bd43aebda61381949ff808a3cd5bdc70ed957', + 74172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '51c8acd58a674c486a99243ddbe038594761dab7fd64ecfc0384e4f957925a3d', + 74116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '295fdd791575376325f7e5bfe38e30f476182e501a9ca53dd47714f1dc68e5a4', + 74192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6542126acae3faff6b0bf440cd9873d6115de37ebb8fa935f94eaaf2456b2999', + 74788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eaa4ebef3ff6df1d3a6c951eb61471943c13b09db8bbfbbf46c04bf023389a63', + 74640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cb197fdc7323acff564ed4886dff758e9b7f8f60ed06d98f2adca4a205f3df4d', + 74768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '33c95a21ced74d49314e16cc465010d9f0c2d7da7cc84385b3a9b2fd35b3eb81', + 74780, + ), + }, + 'Asar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48b3294aeba450ac655d9ce6b0f6d5a0e5246527330ffef07870217e1b12e3f5', + 399888, + ), + }, + 'Asimovian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '630460df70ddf9c1b1c9ca905b4b74e536ad0a7fd3a376059b14bae7035429b3', + 44172, + ), + }, + 'Asset': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4aad181e9fe2867e4861ae90133ff2b762ff6b2f38822dbd30ef4e797a3faca', + 155988, + ), + }, + 'Assistant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd368296a024f2378c2e47b0a42d9affe90b57abf77ceb5b6a16754c7c1ef1696', + 47444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '965f3fcb03af4421cc87ff77951c71123607e89205a16daba6c57c16565ca43a', + 47676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f7078fd6868a1c221ff1af3371877bb3b6f9def656ce569727a1a72fa9c018e', + 47672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c55c650dd3017b58d798adef1f6e25c90a128486441dcc6ed6da496773f9302e', + 47616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33277639d5976e8a22f0d2e2d8af7a9852d93ceb27cc40aa14bf3dea9e616adb', + 47692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1410f0c24dd5be2cfb453c5465fdeca230ab30e1a7740e2858418e29c9cd9168', + 47620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27f7f76aa329a3a7c8ae2ef3878fcd399a274531638b9135607dd01e9aaba576', + 47512, + ), + }, + 'AstaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22a0b45cd2806ac2365ac2a330c7fef04ead2f7fa63ffe801c9f09fa43d864dc', + 2597244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14544a39a77e66cad085fd466fce824084bd07d6e7a81872c8da70865f5482f3', + 2596768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c71b5f8b66fda4a694fcc7b95781dca932e8ff13677959348d4ea52e05aec4da', + 2596276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17a585d76a9c3a22a51227559acbe4c536b70e1d953429291636c292b1a01eab', + 2595844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da8cc8908df8a8896e36441e14b6dbe90bd96cb4dd72b3deba34afde48368909', + 2596860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7aece8121b5f25dc1ae3ea6dcef6c0fb9852ba1345b6188bd5c3078ce849ae5', + 2596772, + ), + }, + 'Astloch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35f66801e6dde53f9ef628e5c6a2c092fe8e87e26085bc334fdeb73016c6fc16', + 49252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f1ececff2f7933f0374f8fca3c6f6e646ed34ec8c569d65bf4be7329295e7f2', + 50852, + ), + }, + 'Asul': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0ebee9c24737bfbf7941531211f0a3a74d695e20f0a0eefb3833aa64a85c4bf', + 31008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71b1dd571c850e1639994da171f0249f3955ac41d5d31153bf29f29da1e10779', + 30988, + ), + }, + 'Athiti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbb8d842e6be4dfb830c174ffa94cd6744fabaaf1de026d300ead9b6efb3b79f', + 96028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52d2204228ee7514df8b798c48434173d9fd9b5c3b065d05d467fcc64068b76d', + 94860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53a4e8e1994d9898ef107d18458be044906aa9f9bb82636fc78df64d12e45528', + 95980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ab6fb2e0380463b01db964dc69bb6ee8d28de3fb580d1c631f684b5e40aa005', + 96036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '09f0bc434dcec5de722908e2aef3e2792e3fbaa40697d520ad660d19a99c739a', + 95560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ed58fa471f0c1974ce219f65edd518373d48cab9afa18e7030af8827e429c99', + 96436, + ), + }, + 'AtkinsonHyperlegible': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59af8e391e1f34618ec8ddc9332f59a6ebd1666a59760bd150e0c948dc11e525', + 35304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '492078a229552c35dc34884a308a051eeb096ca46cd76e45bdc64ab983386915', + 35728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0619cfaec31b7d6f171b15a30e49b8e1b7c9f76eefe51ace21d8c032fc9e544c', + 35496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '65deb73de0190860defdeb79f802e3026e7ccc784adde01b039328ca879db28f', + 36056, + ), + }, + 'AtkinsonHyperlegibleMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34f1b415b1b945306d18fb0fa01506bbe1b2cd176cfc28976e421d08f4e94ebe', + 32836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56cecd6723fd4c3c419dcef57d6df4dfd0bce5a6851c08665374e00ee202bbb0', + 32772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '087995bf947b71c21077abd315da454dddc6bb21d32954e6c8dfac35ef5af004', + 32744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3008665f15f0fc058722a2343332329ddb1b3e9ba39e3446f73957c1089150ed', + 32792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbae52a6785903d0abbed3b728ce5224f6ae310d50d971b03846f4ee63bf2bb0', + 32788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a658a4eadbc8d20bef0acbc0bd51837033df4823d33844dfa51507d6bb42e08', + 32688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43f57d464f837238145c9e3ee49b3f8b4be778758c021c8e214d074968dfa852', + 32672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b596651d88a35be52239d7a4ae6c86e34ab76b64efb55c8e092ab5c648afc68f', + 34048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69714c5f67658e0a551ee7f86bb0f20ff077246e1187bac90f67d13f5ad69470', + 34036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0702dcf05ce24a86a3f38bec6c0a7b0880306192759cfffc6b0d651d13cfed51', + 33828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b7bd7cbdd5316f7523da70836e7b154c0468ae0fbc0cbcbde8d638c972c05149', + 33984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1680698c6abb910d55901f04e20cae2548099d44f1ce412a380ad80028611118', + 34000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '174065c2b603382c8f76453a5716dcab7ab409ae1d5b3e0c61c254a663b3637f', + 33864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f320ea96088a3973672e0c4ca5a8d0e0b408609fdf1feb118379e06a637f2e61', + 33960, + ), + }, + 'AtkinsonHyperlegibleNext': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a23d4df61033906a66019a26deb144a87e1d1af8a7b0a8bf088ab40205923dce', + 46640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5aca13af11e4be94ea1d19daaecb4851c5434545ec32227cdbf3912e75778f6', + 46644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e1a52f80038b7bccc38fb0deeccfea1ce89f70c9b1ebd7a4ee46739ff9172e7', + 46608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a416aec94ba83b7a7d36458fa22cc6bb2accfca408beab064ec599cdceeaee32', + 46592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7417e33367ef0f6403074126dfc11ac2f0aae12f22e04f0d87b2df487e3b0161', + 46516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c08aaaff9f5cf4dd7293dd9d68506c4d7f82cd154719d176d8a9ab00ca232ff', + 46504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37d0f3d3e79fc3f1d17f35cd9abf939b9a215d568edc75ea45842d76975ad45c', + 46608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3bd5af3e85e4565fc89752cabbbaa94f59b952c918038620622a70a9a3c3562f', + 50768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b312a9e2806d1fec1436e9438ae3b7778c12b271d52855a990b4f7a71f17be38', + 50816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b979783042f47c0e6c584fd1d1af0e2b81a33066ba01df1c3d0a870637b8a3a3', + 50608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9deae652f4c0a9f1d3b21c0d64bd7485ebd0cf159d9313fcecfff2c4708e3545', + 50644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e02f6566978abeaaa224d53bbe450bf28ba27fe06cece8fb3ed257cd158e72d0', + 50688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1160d8353e3a2813439edac86f85f515d10a58999e299d99753101efce334d17', + 50588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d7752b33ab771db2bf6ed09a411bba747a7796110f91ccbeeff320afaf4bc5d', + 50720, + ), + }, + 'Atma': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21d24feb8932a5ec944a0bb087e8c1e33ca1c507249ea04a9a1abbd0a6d211de', + 189740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70176c593f928f5d887f72a285ffdd740818e7ae96648878f721b78f2ce65c56', + 191388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f7bd4f49bac741683b8f145d6f52956bbe0f8614ca0beb0b7105ff30c5a8748', + 190840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7929b2c30b891226514c0e917a60ac5cc650b0fb94dc4aaa7006836720159776', + 189940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a61d48250e608b03a3e0ec56a2bd28e07a880b144acfcbd757ad6bad3d563a66', + 186912, + ), + }, + 'AtomicAge': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '528c391d57921d96d226f13b441f6efac9bbc2f85971b16b56aac43246b42aff', + 40672, + ), + }, + 'Aubrey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5477da6d4f575eda7447e3cd668b67fd91b345f241f44c057cbd4a82c39fc9f3', + 32720, + ), + }, + 'Audiowide': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '078dd790aa7505065d5d579077bde98a59edcfbdc4e8efeff86813e8b7ae2859', + 46544, + ), + }, + 'AutourOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c8b8e319717501f81e9354fa484bee403091be409505faceb99c5b5bdc08b35', + 56644, + ), + }, + 'Average': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b290323aefc8052e8283cae0c09a5e847245f3e5195788b640079a43fda33c50', + 51580, + ), + }, + 'AverageSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95d53df5e06ae1d072369bc2bb8631cd3c13673721605f6439e8a4356a693158', + 40392, + ), + }, + 'AveriaGruesaLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '879c55ff64c5c857842f76d67c79f6a96ed3e5a90b4dc3bee62a508b87ce77da', + 110136, + ), + }, + 'AveriaLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e7822881be83db88a6a6674b8ef18760d8fb01b44cc07898b1b686204f22c24', + 106720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '478d586176da94e754eda5ef0481c71000c7a82be20445a3f04dbf2ecf276ba5', + 132056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5dbc6d83b9f1a68d3be7cc777ec96e097a2a02ae5ca2a3f18f39e720f6e379b', + 107020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c592b4893f6fa2059fdbf44bf1a29bf18ef204851d4775bf3ec3878283c54d4e', + 127372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41216d0ca8e7db003bdafb5f53bd3425def86c7321217f68da77baf0feac4769', + 110832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '20f2ca7436a510cc1acc4be8a1340bb9a981f734e07ae1049d66c576d3112871', + 134260, + ), + }, + 'AveriaSansLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a83e94d0c162649191b575437cb0f8c6987d041fa6d910890516505071610ba0', + 106308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '24b49a5f26d2077336f5928e2d897f3cedd6d05ae1a8710999694d15e43c5173', + 132740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '202f00b2640448ee781f8699c9b0a2d3e2dc147fa69d092c3a10e0dad2291b48', + 106932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ae9a133919fa986a1ceb314a750906586b13a872422e2e6396092d973a210434', + 127448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e5b179a3e99ac6670d1040366079aa871eb442f7fb3a1f872a7da7816107583', + 111588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4f1259c14f80a79fd16625977da81961999f87e0720d9abaa1166a258b2d85d6', + 134416, + ), + }, + 'AveriaSerifLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a73eeb0c866ccd1429f11d857b6a120257131190247f45771e80f4d31ac7a69', + 108528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'da9eb01749023250437cc2e4334e2e10c549f7f37722a463ef8373381c133bed', + 134512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f6fc66f04eb4ef5ff8b7e04c49aa20c56889972b1efc1be8f1f5eeb7dea4380', + 108552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cbd2c58f5c87564cafa0818a3bdfa689ce9502b3f45522762c9cb72311682fb7', + 129524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dda3ccaaf45d5371600ea09011a8864ef408b9ab825fdada7db85d16becd6b25', + 112516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d24a6f2704c245d39b742134080db84619423ec0277a0941580d18922403583', + 136744, + ), + }, + 'AzeretMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27809a8c429c73a032914fd5e49a56a18b730a9335457e6601140b5b5ba95a21', + 36332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e0c6dc4608be94f56ba7c17aefd80f6669726db3517eb0b0ac3d1bf454b5b26', + 36372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8960c43c7a158ad16bb136ccb4083e73042f20ddfc9febff0da08d143b5a84f', + 36292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '131e57561ce9eb4b2f4de43d944df9c77f834468ce70e25e8f3f2894be1e3a38', + 36252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07e7f700026145cddacd0f131b490abd5bc4a39ad864ad59b0a4b5b126fe2637', + 36316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62be61badc830916514f3345406f713f01ab02b7a5ccfaf66eca626707671382', + 36208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b0bf7aa8885f0de83b66898b02a7a5f7eb2ff99c480d0e53fdde78cd4410425', + 36120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb36348edc9bd6099f2576a6f9c3dba7b892211f85eaa0ea123306f2bf8b6a9d', + 36292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58d9bf377dfdc216e27dd8fc5ece58b387d1cf6cc475b313cebbe20a9c55a18f', + 36340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd7e2c703cd95d5900f155bdb6c09a444c0a6f29833f92e755e9554e730d769a3', + 37464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6e636204b5f81bfc5d0aae3615eaf94a8a71f7ea86e8e061586051765a6e22e0', + 37556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f85e471f53ed361e472c912798c5926b5c59542a3605aea58555e80d6f92595c', + 37452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c32366220d2578c7aa0fb5247f90101caaefdeb79a1e5ac25a121fba00dd8e4e', + 37360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c100e4329b6b5a0143b8f1271d1087b150289b0142874c44e1291cc176198774', + 37516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c9a46b49d3e2072a94909cacde6e4db6609dd3bb9561c2eda3ad4793b646a89e', + 37484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9fd9e066748455e2cdc5b155ad00486172d52865c47df6fb045de01214fb727d', + 37256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad382fe7a9c69946471531d37bab941e5d0cfd5844d056936951d0d12bb2b3b7', + 37432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7b5f49de9d87a30a9c3b65ec9602b36801ad6ddf95f133ea515e3ee61e8d4b83', + 37488, + ), + }, + 'B612': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29bc9dd8125dac43fbdfb38653463ca1ac396eed2674be15f566f304f39abe05', + 89040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b77c44dfed0702a94bd92d27d00b9da6ec11be924bda5e794fc5da4f74105836', + 92724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c9406c6d212c60cfb04318f76f522ef4246b689c488431419690dc3a99ebeba', + 88692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5a6f3b9063106c9f048a800393507e5b311378874ff32019cb785a86d49d0059', + 91732, + ), + }, + 'B612Mono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd000dd45e5f0e911da0c815fb88b9a195fc02d82c2d945cae0e7f26b173bbbd0', + 86192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '36d5da0f6b9d0caa1cb8780d010841c69cb5ed99206d9ee06258fd78505709dc', + 88680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afd0152ccca934a068576ec911f7f5f4b2b8272c728b92eed29061703d1e8d1f', + 85168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2701019977dcbb5e05e9ffaaca93b1a26b7e04980d41dcd28675f55f8f886f81', + 87484, + ), + }, + 'BBHBartle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db5ad12f640b2a5676895edbea74af7369d0fa3e03ea4f99df00c09bb6441a4e', + 17088, + ), + }, + 'BBHBogle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5348e3e6388f662b9e3539ba42ebde59883e8c715f34c347e57fc261369cd839', + 14936, + ), + }, + 'BBHHegarty': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b03e807afdee0de7cd7ea40df7a77b66d94e3287fbfcc2fc83d4aa0000945d2', + 22784, + ), + }, + 'BIZUDGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0e93ce9e3edfc58d2874908e14b36b77a6f6dde51e7e1d919b99b27018b1621', + 3462768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa66342f3412d3890b66d95543e0d0fa9fac466c227e596b9a36cf3ec1267387', + 3447448, + ), + }, + 'BIZUDMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1059080ff70744bba179d6a7e827d89dee3db3945fe5b03073c728fb5b6e2962', + 4846784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8af176823dfbc4dfa239422487e2776972f542de9b87ca37aeb827d261ac6c24', + 5793964, + ), + }, + 'BIZUDPGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e3470b9baedc83b8f9455d13ba70a720c67dd11a0b0ae0dd8eebf8955bf7085', + 3459140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '092a23377707a2a7495946d36ba0905291d2c8d17e34db61e34400bdd1b4eeb5', + 3443692, + ), + }, + 'BIZUDPMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae035268deaa3f6c59ffaf24ab3d0697f84ea1888fa7e76f698af8be9ef76ed3', + 4919464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64953b15bc53bb719ea5aa324f64f9df22c1894dd7eb9c28a199e733b62677ef', + 5880044, + ), + }, + 'Babylonica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67042b3bdc74088dfd4674df35d4f010dc4b33b739a7ac65bb085568d9c80c6f', + 333872, + ), + }, + 'BacasimeAntique': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c8e7593a98f8c8773c59e63c9e37c01e5c60f99da330fe6f64d43da067810d1', + 29552, + ), + }, + 'BadScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c860cdc1b476269a5634ebef873885abd228261472a533abd89bb7ddf639146', + 122456, + ), + }, + 'BadeenDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00c855df4e12dccf612ed76e4feef7778b29dae6213efa6f11e9f1b2f15e1c1f', + 45276, + ), + }, + 'BagelFatOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '867dc4545ae66d964f8ae2e18d0418b6e45a0e364565e9566c6ef48f07ab0ec4', + 971976, + ), + }, + 'Bahiana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e814f4c2e3a67c9343b2c2533a7ec6ba3074beb09700c3338e10187a3a98b4c1', + 46648, + ), + }, + 'Bahianita': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72554c00db8338dfcea172622a0db9f2db2c772327aebbcc776d8a0eb2ad04b2', + 92180, + ), + }, + 'BaiJamjuree': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9480364ae3c59475c997b72f728beaa20304a0ef7a9f32883116debd078bc154', + 78140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '61b6992818b1406ce7004c1d822178f678dd32bcbbd73564432908ab6a438f9e', + 83696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '387d0d7600e0d88939fff298b095803980a0995853d96924269b58f4eaddfa48', + 78480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '87c3a0c7a294297e2923590d69b648a0c67d5dee6db6baae676eb5039423dc87', + 83876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75b7d8c47eedccd865f24dd6b34869e58570aa4585256ea16d9b9c06bf16b350', + 78508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b407dc138fabf0318e86c0d3192074adbd1bc52bc5c99c97d3f1b7527f8c4cea', + 83944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '642eb10ea5fbcd5f4681bad8b823767d253396bd5d2a0401a6af52605b959895', + 78512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5f48001f2f71020bd554c49e7243d3dbbdff836cbefa4aeb044fa98803b48559', + 84024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a728f1f1b38dd64388e7074fa9e83c93d2e8a13faf3373ccae23cab147adbf85', + 78496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9834f9daca516f9b203241b8373b6104978cd0eb8a6494bfcae5e3489fb9d415', + 83856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abb0dd62200d9bd25ddf39752003cad30b4b09285d6a156d33f4dd1be91bb4c7', + 78172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bf20e31b1ec5792040e0b979d1eac7630a391f35e0e8d3797a7163f466b60448', + 83428, + ), + }, + 'BakbakOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24d48558ea930ddf1ad6fe410cccbf9a12ef01e16246987f5c3c9eae03093957', + 146496, + ), + }, + 'Ballet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f1baa3810bd3d7efa8b9979e15d8d3636d837c915ab7b305e2ff13d2ce3a440', + 74336, + ), + }, + 'Baloo2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd904538a165e8c69b13c59c10fe8b77b20354a83883a0bc269f3b6494c7a6ea2', + 417824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8177a2e3ca5b17279cf5d0cb0ee043c4de6bdf8d6c1898947946429d9481283', + 418140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ebc0059bc16fccdd40426abe2dea840739eb972b5feccedcd652a094cf0b2a8d', + 418064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee32832e101e0b1ca5e78ea06eb805ddedb9a007238e18c6bdc3eb3b0c4fd4b4', + 417936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb9f4e0c726fcc530057e47a9302668cc05cb3e5a20c23e8e053b26a4baf896e', + 417540, + ), + }, + 'BalooBhai2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3a3762fec75bba7eed19d1ca480251a7a3fd075d55745b2aa86bc7b6854480d', + 419804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11447fb20ac99b3ffb362bb9540a464f2f886bce9ed409e267c8593ea0bcae72', + 419928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd407064f1b62b6f5396396015c801f730f7877ae086a8cb11f83ff31e8e2a7a', + 420176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f7cd26a49ee877873648eba679953a3fa6f2dcb2d7fc6985c5b1c380aaf6bd5', + 420052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dfbaa99325193b0d7804734c3bb74d0171e2fa768560fda5a678a7c78921168', + 419568, + ), + }, + 'BalooBhaijaan2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e33d8cbf4e2aad3775a24bc44434447202c342edd0bc8db88a8e9bdc0dc3f487', + 172680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5a7dbdb22b82f416e3bb8e471ffa2278ca8b1ea8a346ef3f29409f00acde9b6', + 172960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbe2e6d80048651a667416b3088958a3862a40dcda7458b0bfa6f45019d520bb', + 173000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a25882ee684cc2321efe9076854fadb3dd9ae9ecda60201f4057a3e01db3f05', + 173044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae54099a7d41c5fb35dfabfcf8649894e236e589a861f05433904a9512bf72a5', + 172924, + ), + }, + 'BalooBhaina2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3dac9c93b75a06993c64923fcd46794434655e21a9041b8c28373e10259c3fe', + 273844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64ea757f543e27c1e4ce1cda668f6059fe0f52f806869e55848abe9ada05f173', + 274896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2911049651a61a88b0b20d8abf22387b500d24c7f97dbae9441505675512526e', + 274944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5d79d85eb8a03d9ecfc0d5268f90f4da7a9595981bf340c2ab8b0108f3e35b9', + 274784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a1d5ff974326a5e746aad12dd23b68542a137965d27c962064efd7bf4c3a339', + 273264, + ), + }, + 'BalooChettan2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07f53925033056e79b2364943aad8bc52ec31ae5d8ade119fa77395d3ba843f7', + 191128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ef25c18655776658cf3ea8662396aef1961642142f8f5667ca70ad44d05172a', + 191728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7583b2d1732151bcda2afa1a365e9a4fd46b058b3c1c0cc0068b742a1a66a3ac', + 191740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd11e1ad812e20f27246bbda8c391b878aea25d87c6b3ff7a82407d2ed4ed2d18', + 191648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b4bb63068098769732ad53ffffcc15210f49e5923c476032f762139a78ddde4', + 191496, + ), + }, + 'BalooDa2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35ff7579a7e177658518997396bcd6ef4f1b78ccf06cf3d6355dceea2d15fb7c', + 269996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e897e9c853f289e75aff02bcd2671daba8926168ee34fba048c34cb4fe6f915d', + 270528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '79548f191b769e1b917c5ecca0cd884dae1369e36a2ee8c17d1cfc4e9c709543', + 270676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b18b0891b8b246349624b2f9df7eb418a890f51d60f23f3faa4be029d231f411', + 270356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd6bb69f8d5834ae1f95449eccbd3012f616d392046948daebd10bb5259ad2021', + 269480, + ), + }, + 'BalooPaaji2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '000b137b698a21492719821c1e91c281331fb5f8425de6ed74f7970668a3c29f', + 148100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a525b344bf02c209396fe7b61e88e229ca3b05c8bb47324bf574f5912436bd8b', + 148348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe13803d6494267d0577bae645f0ef26d6173533729126923a96160f9dc11058', + 148352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1301e2109062158d811f19e083d44fb5710a13f9032139980fa90d179bece66d', + 148228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf3e37c083e6f52a6620e04613c85493e521991248475c695f4331c8bb5d9e23', + 148156, + ), + }, + 'BalooTamma2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce49d755669c5d78e2fcc0789d9c771b774f6b93da4c8dac89630835d4c48163', + 280456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aee678d6631976c044c5e2542dd3fa6bd4b546e7bfe2caad4a5519112612594a', + 281552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c3181dda67fe2a8f59a10b886d726d5b8982f6c80992a08bbad7b8b6da35ab1', + 281708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75ec51533858ce2edd1dd3defc96fd580644cdcdaa567071729282328a86485b', + 281636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a467c5c1e0704b93a4bc5ee5af508f6b8a8759a559378c5b03d3658ffaa0b2b', + 281028, + ), + }, + 'BalooTammudu2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b731aefc583d4636f8e4ed71bc06b1b1e28213585e542cb178ec1be97194606', + 388520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d590e548307a760e49571e7470c7442bf8cdf006d741b5b307bb30d4f4b4799', + 389988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd123d5fd30b6355de1debac2687d3a03e4132018bb220cca96b6608363a14b2', + 389980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21d221a7bd660fc08af18199147656661d739c0721d599e28a5c61c4a9580795', + 389924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d5307373576200a4f69ef6f88f40c652418815ed086bb9ff7ceba5ccd0e45b8', + 388224, + ), + }, + 'BalooThambi2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51a79dccefcc8f7fd95a217a82bfd267ccb0d34920462f9347819481a4564a61', + 171256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6c5b6abd6788b492e66a9fc73dc2488f140cf090d8cd2164e33895998703264', + 171496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73c60398255ad672f15a2230188ffbf49723119b18ddea3f937929b33eb44e28', + 171580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9eb2cc5c72d9baa97a5f113beee6fbf5326775f7eb1e2795fd4876588f8f9045', + 171224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ddc96f6d0a16bcddd46bfb6e1b327a9de5b4f1d3d97a407bfee1dc5a947c0e2', + 171224, + ), + }, + 'BalsamiqSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ee1b7dfb83c2721131df10c409f96f42165d8e59cb441647f902bc25230e9c8', + 323364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '189cc10514d60471ffc6ba6118d1c30beaec5f511ceaa7905943bc684f6438fd', + 301404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f9962f09eb61fb2af7af75eee3640990d4351c36cc994b80c488a5d37c2fa13', + 291260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d2a4f57cff6fa5b2ee51dd01099a5ea2395c2d196bbda03d308ec367a25aa1b', + 273576, + ), + }, + 'Balthazar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07d4008122138b24ce528a3443bf01d43c6f92c031b4dfe642ec19fd1b5dcc69', + 26212, + ), + }, + 'Bangers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0f2fbf70183afeccb0d42a5a75180dc93bbc4f032a04a6fac99b8e56f94fcae', + 66284, + ), + }, + 'Barlow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4cb2261daf93600b6051d1127eef2b2d77c74d66d79abdc62745aa15ea7f08f', + 61000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f5ea5b54ff862fcbdfe5eda82802a52c153a6935785a241adc8947cedd3d1c41', + 65076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14396b801c7944f99805b08f084276bd8b28958c8a452febae44521786491a3f', + 61208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a96f872a461901197fd2c9afcc61b4c345540a2ecbcc456ec3edd0a0ee26392f', + 65188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73be035dbec5c678f006ec17dd90157bb12f21073299e33965fdd8b586b748d7', + 61144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e57a19d3aa676335246c8f2371256faea680d33edb66e894bdb17317d1318dfc', + 65420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fcb717393591e02cf9e1664e25e24475a44de32655cb6d7c919f28c07c7ac49', + 61256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '200c8b35898374adc8d3fe1979a6a37b3e4a351c4b4ca444d9ba1746542af7f3', + 65436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb18cb08b94c5a45fa80c03aec4e9471be28ec2378806c8e83570f27103fb61a', + 61228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '36aebbfd3028801d16b8883db5817a69cbecc411805901b399ff830c4e20d671', + 65272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1538c291324c97d56446d95fb329ec4340521629119dd6440e61befe6a484f02', + 63652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '49eb3c61cb107eac1d27e16c47e24abadf663664de8caca2b8664647f5431caf', + 66748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dac430310035fe39cf556a84a7151e1886b00a98315c04fd94bb8768cf2123df', + 63464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '15964f959bc78f3cfdc1c0b4acefff96e07775f2ee8704edaec60b153dac2c8d', + 66464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69864f72c7aa71ca716961fd69633f935848a44d35c0d2972c70af4f1df68d55', + 63388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f004178d7b1180940c555d86a0d7cabfd09fb1146784703b0c5513fe767c0f97', + 66332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49f0e098b0167b5268fc7cf04fe28657a46345c8fee9388c58ef87cda6dcbca8', + 62680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'afb02586ee77b9664a74afd65c4954480654fe9eb011d73d95e0fa9bd8b62eb5', + 65852, + ), + }, + 'BarlowCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b6ab1a8807ff5b63413518d590eabaac7f6384b206aad7ad278a76da4d24df2', + 59160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6dcb81ea53181a70ce6fa4130350152b81789371476077c363338253d28edf84', + 64232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b692513d6760ce8231c9f2446e526859e7ad5585323cc26cf2184740c0cbc941', + 59440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0feb2885b03f8b0e328a13129a7953b2f388dc0186282fa5123ff62f200fd02d', + 64192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '753c47d728971bf5b42d1851b8c9c9cf4fda6a8611818ec6a1e0af24cb9d2d27', + 59404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5eece17362d8b1ca8ed6f7392890d60fe4fbfb55f2badf4e0808899dc012f7e3', + 64112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a5ddfa332cbee25c647b442e77d44d605de4fb54b3f905cb8fd62f8d4fc0aae', + 59424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'af00d9f1f836d3e3093ece207c5d16ffec9f33c0a06ff3d42add2fb1dff07436', + 64256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de6afc7fd8afde724454ccc1e56f6319f18994a87eb3a78d9a886338344c078d', + 59332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fc548cb0cea8bb685ceb14a2973e57c21658438175bb645454272665f9e395a7', + 63976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d3e372f7e40ab71fe2f6cb64edfd1f5e984d346cda7cd8c117db5d4680a3b56', + 61788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8df4575c214296a67aea8ab79fb4b007548374955c60e7fe9b07088695624e5c', + 65080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77873152fffc3ed53345bc5b5440561ca9454fd3eb50d74d11cd8ef6d93933c1', + 61696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dadca02f37a76341bb9014d671ef5b78756a73540675fc091c0fd70b680a8b64', + 64860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92ecf7865ec447e01c5d019a7eae34c793f943125c94b1d7c387a44d2e9b5cf7', + 61784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '131e299553284b9df03231d5958e17033a899677f8832c28c269854452b52c05', + 64732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00918fae8ef12433c8d33c0ed472c7b7d7fff5e3d35f0d6e63a5711d8ad7bc56', + 60400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2f4f390eb03ee11af695aa77bd9afc4e90e249c89b2f696a3116e3326701ddc0', + 63400, + ), + }, + 'BarlowSemiCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de5c50de6429d9406a5c9f960da8a59c8ac7eed525035ff974aa128a90520c0e', + 61564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5c1fe2dae8b9ea1d7a9afe712edf7f281d7ffe95ef81a9a2c8f0a54c105f8dad', + 66040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b486e5b872b8e06bfce9ccf309f336e22c540623f8530fb18b2831dc327f9ca5', + 61756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f35d1c2fda6dce2f0522bdfadc5934e0441dfaff63eaa095c2c519ae666cc82', + 66052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9ebc993c934f1cc60f2cfa183619a30c1d55871484e06e900887fde8e3dc10c', + 61852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '43ab816bbf495254983104cad8178a7f5a9dc09af729f338e80377088871a083', + 65976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c94e5444e96376a571bf79b8897fdc43efbbc0db4b8738bad2d4c4fe93d99aff', + 61928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c07c98d59df52b07fe79d3916e0be5c230491822ad4ef59edcbf9cbbd76ca7df', + 65904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbdc1a73b91fcee463e63c446cd4fc6ae1e9547127b53f75832b162b6e1f119d', + 61820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f25565d460e547a3276a3448d101807d6c09af58902d94ac1505c4214e90fff9', + 65800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '490b2a19da27ff5d32aa9246ca6d2dbbab2604639535ec9f576df5d3f9421502', + 64256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '23fd5b087ef2d824fd3e91838ac020ab45393eb7513e755fa37a19ca1d833147', + 67328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e99b87a6cc0ae1bdc3a307bc5b8b74eae4811d0e9e35bc94dfb05e0b68d67a40', + 64236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '625322c03678544df151a89e4fa8dbe019ff51c97cded24e12e15b8b4286f96d', + 67068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94a93d82c21a6bbabd6948e1ea0ccd8f03cc57bfba54347e7ebd262f9abf1600', + 64264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b18d6e18f975c7980e4cbb140c49ba466ec299647db4d15331c1aa4cd3ce59b2', + 67064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45c3dcab40a000188643729a90327e92839201ab421f737cb3bb2464324e6fd9', + 63288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '426a2354ec402b76a17a03e653d17d1f778608d1d1e0237c95e56eef21702d2c', + 66300, + ), + }, + 'Barriecito': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c8c9599c56a57f9ff3ca046fb25c36528a0cfdfad2535deeae91c87e993f43d', + 168284, + ), + }, + 'Barrio': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c73e77cb0fcc68d0d94332f8915582a12f6c2b165f15acc69e0fac8043c43aab', + 141000, + ), + }, + 'Basic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15c18cb287c6877309c890fa731baa7e824f164a2f7e43055fe9cc8637697d86', + 42200, + ), + }, + 'Baskervville': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '021332bbf36aac8da13ee1c395b5baea6431177e9aa88c3aaed902ebe5f61852', + 59828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b10f9c8fac76ff15d606a714c2345365a9f5d66dfac5977d661c6b98b0bd92b8', + 59972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9e30a9faa913b97218444a6b4435f29fa93a5b43fe52f9776e96f6f64b696ca', + 59996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0035cb99d120258fe4f720c3891e7bdaa870e6db6d88089e4f10bc042b890f6', + 59888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '66a3178f7e14bcf7ce9bec1bb2ab392d734d6b752385360d25fa74ef09214808', + 61804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3da20c644caee72af9b5ceb6e0ab7f77389fb580008a1f08543456e56f592c2e', + 62024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fe5a9822a2a0d61f6a1f24c19237993db9fd5ff965c7b8c241dd3a69cb4e312f', + 62064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db84505f35cf700d26a0837e6571907cd06d702176b960fa7f2ee9e149967385', + 61520, + ), + }, + 'BaskervvilleSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7851f651599fa3a9f399b1254b1e2f33e06c09e1cff418c501140f16f3f4962', + 78276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc9fcb8029ea57124589585504a2498b7db79d3885b76bc5c14356c85fa501a5', + 79264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '779e5a54a7e741a917e78430f0ccbddfba52b86ec32f3bf86ec5be961c144c79', + 79348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '904501629ab7ee5e3626978912ee38879ea633cf6693ea3ae3ee0b08e9a0ec74', + 79232, + ), + }, + 'Battambang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2945d97cc9bbd466dbf755036c7260bdc138cbbce2695670beaaf3ab8420819b', + 59320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80a21ab243101ce89c9890db1e8dc18e11123ef50789d416ee1086720af99c40', + 58752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52f720720ae62a367dade778a49b63c40cffc038890c48db8b8613d7ba767f12', + 63756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c34a808050fa4514d9d9a9f5d2379bcfc15dcdbbd8fa15a374c8248784b75f18', + 62148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d4d37aaf17c90a28f58fcf301d09cab8e08b81082f4d9e261a7d552657904f2', + 59948, + ), + }, + 'Baumans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '819fdefa5a1176397d590ac1672920fc8c51af57f4729004ce28c167c90fa8de', + 16392, + ), + }, + 'Bayon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99a813ef40d0534db52fe34c136ce7cf50917766be7780d6f7918b1b931fcf1d', + 31844, + ), + }, + 'BeVietnamPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0abbd9ed2dbeca4d90ae2160babc5683fee0623d6619e98677d6c6c64a47e78d', + 72348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b31747559492756ac1ec72a582043ef3c4bb01b9644cacd0bf2341d97ab69438', + 73916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8442b499dec3f7ca8019bc9061a5e40b23df049b68fd6fb09e0ca82634de7fc6', + 72252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '007babe76f7a0def9016117a5415c497089962a52f481521aa7b07923b3a2b54', + 74416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '528f2c40df7b2e351de21c89fa2d2da9dc391eb91e462c4ca6d596626942c063', + 72484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '97539b3eaac44fbfc77db70d3bb13477b61b28d82002d6712421e9c34d307423', + 74252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7137b7b25895e70fcb54f9459a4fbc520288ee1c5d1433a6b6ef7e46fe80f41c', + 72288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '84ee08dc99068044d207dd0b14e83a0fa9daba6b5c52eeefcbf1d502d49edeb1', + 74040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f73837ad7634172954987002dcf5644fd5bcfa44917d53341aa6ea27eeac36c', + 72424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4f965490bf034f592e9517ccd411a2fe5e9dff0b58e0b57bc0c644cdaf44065d', + 73976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d403b77523ec5de7390d86eccaf8510f49274ed9a0621eb1350d65b6db8f8ac', + 72268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '628b394f3e80196aacdcc6828ce411db4e6fe4d0b398da75a0ab22087d6264c6', + 73448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9349ce8e551cd214fbfcabb8b758e9cef74da57d5fb61678058909a60c916bb0', + 72172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cda4804e2a4fec70726ee9226a1cc997345332de65ca50a4e317551ee39957f5', + 73308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f47dd6df4d2348f0779645e06f9219c95e1a984142a9a2fba624f7d4cd6c5c2c', + 71864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '062e86d2f3da0c837ae71af66ca70c3e70513d416fbf01a2cb38e472f3677820', + 73248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6eae3f450064c57f6f23ece8d287942d39ef4d1983fe30d427aa890455042be4', + 70768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '480c256a2c227c03dc31705117db93192bbc4dcda9a89d2694dbfa2644e67bd1', + 72052, + ), + }, + 'BeauRivage': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddd83eb0bdacceb749d27c2e8b767cc38b522153db450931f1ca8b682c8b423e', + 110720, + ), + }, + 'BebasNeue': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1b67d8679c6f4d301f4a05c13d1a4032cefed98bd9b61b11b2fac9689c99116', + 38232, + ), + }, + 'Beiruti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db50ac70f2eafc54f0d9728faeac03f7d06a001901837a7e47069362758a3d20', + 287876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b88e4b63d8cb109e59060da3025bac7ef4e1d66af84c297b1b2795934d2f1c81', + 287776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29bfc6ba7421f03588f887e80c39e07a13e1797d28716ae4a3adf1b1232f5ca5', + 287412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c9db8ee008c0c7b4919021db44c931ce92e94c5351c6c989831b95d0204990a', + 287284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c02252c187ca1becaf478f76838616f956942e73fe81e35fa7b2b4f804634e79', + 287600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2164e954fbdf784cb26d0edb52252e8da44376f7c67e031696385ad49a88901f', + 287024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '493dd0b10ca51318f424063bef61741e8090364a24400a70897632446bdd7708', + 287352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6ce61f15d0574baf628833f33ae79f4a2dada6b198b318df31b4d951866f4b9', + 286228, + ), + }, + 'Belanosima': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b06a9311ac4b802bfd460ddb1e1536d57e6521dca28090c224cf2aadb4c176cb', + 37264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8cd2ff42ab4f269f649a0d3d55187a59e069bc33cef3d445a651a9bbb114371d', + 37708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94ca6a4a21e701cda5f93f60560fa69c22a927b1cd418757a7c271e9f0d7d0be', + 39184, + ), + }, + 'Belgrano': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5efe8d9726daced2f8cc022bd5b47c776764cb5a234e90690541db0301a9457', + 26644, + ), + }, + 'Bellefair': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3aee7f82c73f8b42e70056cfe5c288e1416f071a21afbdc4cc3208e26739aa02', + 44092, + ), + }, + 'Belleza': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b66eabf3ebd0b7ec9164cfa450186715ea533e14765f3383b40e5d4e806297e', + 36788, + ), + }, + 'Bellota': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7267a06224749788d1225f89aeb85648ca8f16a4c28326e271696b48a3743ba6', + 87260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '78786fc5503dcf071074b70eaf67476238bf796d622cf9de79ebffc89421deb1', + 90124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2db601894a28dc47709b661019c34410a8737dc7e99dae88d8b1e35ab715089e', + 86932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8770c98e8ba98e597819c21f9fbd83107328857a3ca8e83e8199eb816680a440', + 89772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f2646436c66e7c7d49cc54f2c1d0cfbc8589fec48b315254f5917b60073dd0f', + 87160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '335115d63e9402c35fb1a5b477c051b2b46318e4e4dbba5844ad8b6b6e1ec4c2', + 89992, + ), + }, + 'BellotaText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9cef5708850efe157c5d3be3170fe1d6ca556c11b85484e11b2485d95d9b3ffc', + 85412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ccd789ece2cd09557ad0a842b09790270c94547c21c68576fa8661fea220639', + 88420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e93788d57b23535011a5282bdaeab8a9b81d0aa95c30d479ef5a5fc8995e221', + 85288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d38ea217ef5061a5a0331677d2f514ef3b7e3806dbbfd13266155806427eb4a', + 88132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ce7d2b3ba8fdd826fba421bb07d1c7a86a8fde1683cf574e06d69a23c42ee7e', + 85380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '02b8978b24462b31965580b8ec721c43933981d4d82b377b5c1ae3e0b0e1550c', + 88216, + ), + }, + 'BenchNine': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92efd6692cae586d570b248ab215ec7eecbd36bfa826b62daed83ab067d3d5c9', + 36148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f43762fb392103ede81c2828c6c905e02b6b44c8f91e0a173fb463f6112bc3a', + 36912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce2734b34c3eab0d08a45fee950a64981ae11e54f8ff0d1e4bc206c522c05674', + 36896, + ), + }, + 'Benne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2219c3539c1a6edab2abfdff57d20c101072c45318e49e0012b7717614f6080a', + 208536, + ), + }, + 'Bentham': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcf337bffd8dfc3b429455fc044c3a1e8e073f380a32d15a1c7169381dd10141', + 25852, + ), + }, + 'BerkshireSwash': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cfd5e58bb57d809250fe10f8b696c58318e41c6f90127a37a106e94c0690b163', + 51908, + ), + }, + 'Besley': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '511f7241b61b58441847bbac772582ed41232c52aa7fecd9b694830214352ea1', + 55960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50440c54b5011cea5bb0f936a95668cd337c55167d7f3e2bcd71563c5fd4bd6a', + 56036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9b2d5c5a967853b2eadc22d4c1ec84527e28b02fdf3816513cb5ec6e7f1b69f', + 56048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5976ea0a093b65066aa15add62004ad659b32c1867006d6914f9ee05188bf855', + 55988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fda52282fefb3b8aad0ab0eb2e983f351fc5ed51c7ce418085d8634a53a0abc', + 56052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88ada78918e7a9777b226b24917f5a6995d053ccf75dfc38c6e941ea28f07f1c', + 56016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9b6ddf109e70f4a0d0f7070c9049874d8cf2f73b0edc7349047ee2b0e13f2276', + 56532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7268e27875f9dfc9d399dc94523b7cb5b9c9a3889d836df1276695f88ced644e', + 56728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '28f14e12cfb4ba4bb3d61a96389ed8dbc842ed963141adf2f5cc338c585963c1', + 56768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e77e0dfc92a9279717b554cc44f8a98b11fab51096ef405e4ca34ccfbe5a4e3d', + 56688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '39845314c440f9b2ec730f52484e546c48d61f049f4eb548be07316d0ce0df4e', + 56792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2abf48e1697e5b7ce9e369cb567bac1b2b1a727145aeafd6f75cd79ee42e646e', + 56736, + ), + }, + 'BethEllen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8fa596edd5e469e18ec8d90f6481be7e5d372eec2f20ccf3cb0c53e1e220ab0', + 115600, + ), + }, + 'Bevan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89b233a253487b49138d44eb02ba920cb80f8ebc0758e595b026c97a118a1e33', + 70020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea63f16995057978687af4c11e41be55d08bdca55ff7f23641eb257dc89a6f5b', + 71216, + ), + }, + 'BhuTukaExpandedOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2eb2824cee42683348eb122be61b4f039d0425ec84a9ee7a0fad924c35e18a05', + 63848, + ), + }, + 'BigShoulders': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '237230a1c554b183fd764a6481eb7d3a398a7cc7e2c9a23c3c94b73d5822613f', + 63188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2ab8b708e1dbde8b791a3f2b9eff13f71c67349014cb1ef20497247e44cebf5', + 63596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16ec547dc5a08a1efb3795c468bc1521d86a7d25b42c51bcfac9e8663915102b', + 63616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3812edaeb38c61deca4a2e6b17e76d9920f1d71f3f9e2b23d0b7dbaf36c85b23', + 63536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7d1228899e584e9dab04cba5a0d672d7d113525aa197f0c64dc7122833ebbed', + 63576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73ec48b9692a8436613666bf3c49731eea2e6746ca666baff891d70344285532', + 63536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47d2b3b669b0197fc095e56afe9ef7ba85edcb91dff39803649188b8a9bf5f81', + 63656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3afbc1a44918e7be879319aca89816b290a9a660d12a1e4f6b257e1c52376225', + 63688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ee8f9d3e06cd96b25dbc01fff3ff31326ba2a7db487a188d334d0acf470db86', + 63640, + ), + }, + 'BigShouldersInline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a833f245b2c5183d5eb041517b716c976cc26d227f7e3d5dbf8335c49c385d2c', + 109700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '109b547d84a32b95f90604fdfe6c5cb039992c72ca94feb6de28f9eadf098b74', + 110356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '327ed00b99063c4784cdc5d29d77b19bff225bbbc0abdce9e682de878b023219', + 110800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0333fd713fecb288a8287a2b73efae0505334515f7a51562e277d5ef2c4cf34e', + 111296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '354208831440c2ae6751fed2a5a25e5c8a0086b8b35ea3253817b63f7b967ee1', + 111836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54a462931529f2ab9870573a2626615e7f54cfe028b96301e4f45782cf9ac7ac', + 112124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75dc4d40eb25b5a5a4d8faf769025f5ba03a0f229dfcbcbaa518f1d108b2222f', + 112440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '546ce59401a4d66b0ae78f202a0da6cab9e35879fc9b5bf83afd9cca7a16efe1', + 112744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68993b91538bec40487bd17215a935950453d8ad3c06e2d95a5e8a8c7e1c60a2', + 112436, + ), + }, + 'BigShouldersStencil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccac3b45a958887deaa3a7a7d6f6474e54caf5c856abe723c9006f6c84bcf6c7', + 65568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2969720c09dd4a7fca568839df87aff6997844eae021748bde5fcccb2e0046cb', + 65952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '657a2d7b1f2301196da81c0d89c66b6fb775c4c619cdbec2cf92e6f7d850015a', + 65956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77d90f19f483276f7703667ca45e3ff2a0fa72288d0bcead1df2917a901c9331', + 65960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f7c7c2d6f6cc74cee5bef4bb6d17ef4103dacea7552cf5d0d0f9a5e3ba4921d', + 65988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3ac2c64de59f37126283fd1b3f3768b6891d8f6f6c7a427439496610fd12068', + 66016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b70408ed19b86f837a7df71f239d8ac7830b3cfd5943056ec81e9a67c484e80', + 66108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3284108be1ccc93b4a00afec249287e3d8d7a7a5dc2fb89e4e77d09bcb7407fa', + 66140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6886f2ff96eb848292d43369dcaa7cb73f3b386f982132fb212fc5823028dd4', + 66120, + ), + }, + 'BigelowRules': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a62c6e3152496d73b77afec95caaae2121da662cd31ae0171bc1187e471cf58', + 56704, + ), + }, + 'BigshotOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b76bb5317fd3b7b99dc5ff17dbe492388438f36e8ee8348c2ae3ab4d7e1303f', + 34916, + ), + }, + 'Bilbo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '603ce5a07f703ff9000ce47f89253da5c9b8c6a1f2375074ed87f4319dafa373', + 61336, + ), + }, + 'BilboSwashCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95657ec0a940025da15129acd62ba8833f92775dcf6d05e394f076f587e3a405', + 56284, + ), + }, + 'BioRhyme': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b35fc1178716d3980a8adfc22a9f3bdc7319f931db1c93c8e3efa70bbe7f21d', + 61072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3b1323f5db832bdf812038feb84a6ebf51334400e6212a3cff768db3abe99ac', + 61136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e411090117deaabec68bea5f20de31572affb74095154fc0c8cbe5216937677', + 61816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95f551a833ccb4240dfbaffd36a52514e0a77e4e4d5bfb348ea5ede2900d3be7', + 61788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c0fd909bff66acc36fd1f985f8ae85e9490928f38cde07afcd1c83d9da8f075', + 61836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1de28b6c2639021699b808e3dd8eea89c33804c3f70851f8d81e2f79467da025', + 61804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a312280d99e51163175a4809d6c504e14516ca43c9c6ec75af200a189c040de', + 61836, + ), + }, + 'Birthstone': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e6a7552babbd7b3d3170ae34652c5d480c97785c6728771a57d2f1ba516e733', + 97192, + ), + }, + 'BirthstoneBounce': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbafd412c4739437d20d47a53dbad7e2916fe95f15983c5bf0459ae72557de1c', + 131964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1635cd58a8d9037191e3a18161e334ba11042e3d875fb5cf285c203d551364a', + 129328, + ), + }, + 'Biryani': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43f9c4bdde725631d29d167134fd5d47bd43693f7e6854f8c2b2ab0b338838e7', + 116780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bed1c9a1c7d0532f742884921d2f92b32e36711cf751fefee592dde6c3e548e0', + 117180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee53d8459db00d28d5dfe7a5443a7ea8a062d16b909088740d908bdd07617b82', + 116488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd5594dc9b9328abb474af0883f6afabf26f214242586212b5d9ab147a0aa706', + 116460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e3d6fea266747c0bf050aaf720ba717a3af53b91e13760a3e34709632039372', + 116280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7c59e26470dd34e265d4a84977ee65a3df787169ae7fc20ad8d7bbee0ce636a', + 116244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e9274784b25a5f18c439c8461f459dcf27099a5390cea69cc38c0329ced0635', + 115348, + ), + }, + 'Bitcount': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c82a650bf296cc8129980f4854adb4d25aae5fa941a922f9ef22b1eed7aa74f', + 65248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'facc42638dd9bd1eefd18acf27fbead928d07af0d88adc5957c81c4c2714b2e0', + 65296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd0bb156fade36be5338407e58166a84fdeb7cac7383ac8535475fcff1f97c63', + 65272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98b827e4d3d921a1beb0d95ef48afe0b84f723c364f2b677b7c4f90489f77d59', + 65256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f63b04f90dbb33e89fc5bed8f1959ff0c6f561d463f2a28122f0ec71e74a797b', + 65280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e080ad62f96558b935e1a5fd1a26eb9ca1c0485a050cab29465b8b72729afdf0', + 65296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c96aaf5a9214430c4d1902d7d08a9049ad7629ef5681a7c57485b861b5b02c6a', + 65228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ed23a8bd64d470f5e8e02afd787135ed20839df1f661ee4707e0d733431e69b', + 65304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '394d3ff6eefc431673c59154269d8a6c89294127a4b8b312997d3a801a760f13', + 65272, + ), + }, + 'BitcountGridDouble': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b53c3c0249eacdfa94e816ee8ac8fc7e5dabcfe146dc5c3c492637ed6250e84b', + 61664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7ce780c8bcc111c3630efa42235a182b0f00e460568989233320e75ab6c87ae', + 61712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3acbf4e48cfd8e99a7481c292c4b4b1d738ee017d6e07e153ffbdc94c8e9d186', + 61688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64022eaf4cf469db40d5db8ac673084b1c9afff3d599ba24cd209e02b9a74d52', + 61672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73e12d8d2ef9d04319d34e48860149e4dd0ffc2ceb2e736c165afa2fff214105', + 61696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af1a9d76ad7dfc907dc61607db88102a55d9437733f3353992b0337cc05fe43e', + 61712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3c22c8c6d22f4fdf257ca5aa83b3143945e3ba8e52f23967871e17e5990dc98', + 61644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8804c67cb3c315678768e9be8ae438826d4b666b7c7604ebdf44a749cf44e935', + 61720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff98423a09c314fb0e076b0158834f60e5bee55021e540a15b6a4293fdeddd15', + 61688, + ), + }, + 'BitcountGridDoubleInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3bf8ec16bfca3f9acefd4798cd522516b13d532371b31e0978fc4f549c0a41f1', + 79988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9af046219c9d4d7012b2fae55ae51ea7357fe2200dca39b0deb23c53edb5189', + 80036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24517e467ee6739aac9757e46152166133fe11f1b60d83177a6c1ded6040a686', + 80012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83d8799dc4d455c1155be3d102b7ea79e1d48b49e4f9a1b4818d7ae95ce765ba', + 79996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7230ac2205116dcac2c0f5cba9def17d4a68cfded5cf4802156f1f6848c2696d', + 80020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8115fe238743e25fc1a12492b4454c531614629113249190db5ca0b2b36df40f', + 80036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '756fd7d51764e5568d91df41dac6cb1b651b35310620756558cdb6f1f00df8ac', + 79968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d2e44526c7a67b98f42d7c502fd4ec26f019972667c32ee5aecbfa0aef61ceb', + 80044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f775703bad34af155c9376eb21f57a0823f51feda4e87c3c72c6cefa9632ca6', + 80012, + ), + }, + 'BitcountGridSingle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1756ca37a212874b3531ba95decb6ae7a0cda8507325ee8b16ce9419cb2b0cc', + 52908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2278b4f129753a401675e8e770b6bb84d7888e915055b34d5ae4c1d92b484a3c', + 52956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '257629fcc666e6770a9a49c4485d58448d7c3b9c29802dfc5a03c81b5a248a47', + 52932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1ce89b1535493fa9f491942aba00ba7c325b8fd8d07dffba756fc05fb6abf0e', + 52916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '423ac1789d9eec5558f1cb4c602d0718b8ebd0f61f8c5fc336f295696cdaef86', + 52940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be680e66c562a94f7b2a84ed091599ab40ce24d9e4ce849199a1a8f0df81cff5', + 52956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1476a127993f4478bc21fb3541173a34d9bb077b9e030e7068b3539846ba7d47', + 52888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42e02eea4a1e7910be62805e363ceb5541faab3dad8ed05db1b02781e888e331', + 52964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01839e1471deffa7eeda541bfd6662e80698d4b0310d791c09a5c01f79e921db', + 52932, + ), + }, + 'BitcountGridSingleInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd4b5e68c7e0ae183c7536b06b3bbaa0aaab232ce8e15e755dd6a74acaaf2f9c', + 71064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3beddbd083abb09f35f9f9bb63aa1d69496ea60d9e0b190ba0bde2a96345eb7', + 71112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '854ddee2c8c97d5606535652748ac659b97e671d2c9692406152ea2876545bd4', + 71088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c399d0fa52939c97b941205e918e52a1e26c9e6fa0b742ce81aab9bfed51114b', + 71072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '921f4edf95642ee46a453128f2355c4ff1e3d0d8372c22875d654e5add17817a', + 71096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e81fe334de4d8ba32c03b484b468fed425eb7f27e8fc5d7d6fba26deeef01bb6', + 71112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c92bc9208553489a46743369dbcc4b97baf2314098618414d7359d4d6ac8e0b7', + 71044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b42638310a2c5e09fe7745bca868afdc38843ae11a1f21bf979a8177ca74284d', + 71120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4a26662841e440dd144704d1cd77fd4f789ecd0845922e4593d666b57ee8a30', + 71088, + ), + }, + 'BitcountInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f05c38a6eb39a92c08273f67634812da168ba4b7a9803ce20b508e25f0210718', + 85728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f178b32521f9a8c15074032be98e1d7ca7a6088a6fd3ba4c895bcd219f49fda9', + 85776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec5e0e5e18ab236e5aa5810da758ed5b02ed94a14e3cd07bfef523721c2e0c29', + 85752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55cc23b74189ef10f5414d05c2d3f9f73dc8cd45008dfef11e4ee3a9a6d5ef8f', + 85736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a04104b6f21f352f1ac77f54c448ad5708eef3407a13a6ef069b4c1a2d94b600', + 85760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72413acaed555629f569926801dde8c2344439630b7048209ff62c3b5091b020', + 85776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cea2b4f936a99fd0fd6e24681c107436277245f6249136bb62be89618f051d4', + 85708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de2934dd773e60cd1b188464df338afda4970a8c48001c0c67d80cbe21bbee3d', + 85784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be348eaa146c959984be78f63c609b2ff7d78ce00ec8619df56c32ae833fc4af', + 85752, + ), + }, + 'BitcountPropDouble': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10bd8715faff5541e8cca0b9a0b1e29623fa3e9cd63cb0f60b8530b7fefaddc9', + 75048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f799bc83aa832bb975b6da6648f5b2c796b5e2099db5ade091bec6e261ad3fde', + 75096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b06b9f56889b9bf18fdddc697701ca3f53b514c89deafb9440f879f9d25eb6a', + 75068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7244e96ae63ee79edb3c03a6c5dc45e3b858a9b17304a04b9b754891ebf7d9c', + 75052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87038637ab7203866257373ffd550098091b2fb4417e88125f26e7961daffd67', + 75076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '405d7be72840bbcd8f216ac75bc64615e6c3d4d0ea9c64460be1c7153b1786e7', + 75092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3a41705d7a7271714146d20c1213cdb48c88537ca0984fdf4685a224776fd2d', + 75024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4287ae919e4ae60636c5d867719d4a07bf866b32a76b4e22111eecd328947bf5', + 75100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18ee8c858c949a1aa6b8b51135a67ccd3200b0cbc114c9a54e51e69b878e84ae', + 75068, + ), + }, + 'BitcountPropDoubleInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18649f6d2bb46140f4fe74bf3e9d64f6e34c21d9b43f18f53c1b645caf0700cc', + 96988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35d971c3f6f49ad42cc451f4f103bd7b51837e65864ebda56ade6c064cd0cb16', + 97036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e84d378a5e8fea3423a8bd4b11bcd4920730a74fb66ab79f8d24f30f83d6560b', + 97008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf069db684a30d0231ca836031580ec06a8bb95a1bcce51786a763dce7507719', + 96992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed8dd9b62e7b900518f4d19ca250a94e8454d23778b05f29f99aac568c833962', + 97016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb2a87926964579748ed2ce45e0ce0b407d25457c94dbc1bfccaa2153c63b7e1', + 97032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3bd1df20a7f5b6d52f51da47696fb0909fa42f27e3f614f97d3ff2b1f145dff', + 96964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e40dab45ee2f2d170123922425c71eed22c0f3c77ddfc8344c6379b1d1f41841', + 97040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd919f49893f260633a013127b188a5105c3b45399cd80b649be3b720acf6731', + 97008, + ), + }, + 'BitcountPropSingle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d17f6f20033e650b69b7a922b54a06214dcefac319638a8c6f4ba5dc7446345', + 70224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5dde60d449163ab154c46304db7d356cdac81f066f825c403c3ce3e36edaccb5', + 70272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96a2d3341cbacccc379aebe7318023799f3e71f8b5632a5c7cbc59fdb6d08892', + 70248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '934f37c0c7b16c23bec944d32ad1e37ad8830781cabf52e57f2835a8b446d470', + 70232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4be0433aad09dc861b478d7b3546fab075347c3446ada5ccf2eec8355aef1bb2', + 70256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6cf1e1a5f5eb87f5a9c0062b32c13f5cd4e5a0d183b39e811126d27efa5a6ca', + 70272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '575a2de1fc6218e090e775e2cf16928b6838be204838cf3efb29a6f007d0e5fb', + 70204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d4537100a39e726c8edae3ad84202059a22931f4e49ef0bcca456dd92c416db', + 70280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '277a12748cf2dc78199a58524184a3dbd3b0cc61ecff8d191193cbc3506b29fd', + 70248, + ), + }, + 'BitcountPropSingleInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bcf2a2a0f6b2c5412ae8f75a94ae2afb7fab6b70174b31b09c1227841285914', + 91988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edd68ff972cf4c6332912a8033dbe2af82e1202abeb5b855b8ad6ddc25592c89', + 92036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1232460e67cecab28c3a967c2e838cff0082644c9019231b6199cea1125cede', + 92012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd25fa90618e7b516a286e5b092ff36c2cba51aa091d6cd47776be86d1a81a9ef', + 91996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcc75831711ca1d5d09463f5709fb94b5fc30dcc2fdf014c4198430c935904e6', + 92020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e252a7a0ea5b818877b13e7aba1605330d5ddc1f27df0663a5a135f7d8aa5f7a', + 92036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ee09c1e404de40c4fe400aa794a6ff3a91d2239d1dfd55b3a8e7ce6ed689f25', + 91968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c34c543a1106d577637cb7bf37f14d2a386f509de31c10670280d4e329486f9', + 92044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90c716dce5fc9172f4dc656310c9ac98ee30eaae073f669f779b46ac3c8535cf', + 92012, + ), + }, + 'BitcountSingle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2387ccf1d3bfb0acba800c60b710592214a1088b0627e80fa701a7686266a42', + 55756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3cbe483d9e2f2adba607114b4ddcf368e9c69b539983e743afc3832fafb9ef38', + 55804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4b9371ef024257723747c692ff2d6c1df80708dc33ade953b3a35ff96e8adcf', + 55780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6994a6daa059a2da8565c1ba3c8fd93ca4bbfa8fdb8966bf9daa0d0ddd3b5bd4', + 55764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9c0cfaf953948a6b25481eeb9052eb25a88149671827faf4c73e3bccec04a31', + 55788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b2cfff57cf528a7e00d139dcd482a80f85d13cb96f204d9a6ad97d77afc45a7', + 55804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '315265464d669f31a382d0d1ebf75c1f9c9c3a9f3a8ab5861222ffaa3fd3d516', + 55736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29ebb04f79de98dc9934a881fd08978f2236dfb4da6c65e98466b2647fd32693', + 55812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70b320ad07c6e08a39b807c1504b6cce02f4bbc2e99c10f6040715c9022f12e6', + 55780, + ), + }, + 'BitcountSingleInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e402596046878eb644fb51846f0055d46e8d791e548dc104f668417784b75fe4', + 75920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93a8cb03084e9762979b87c8348aa8d196efad9f24e405ccfb835c52ccac85a3', + 75968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18c452b02542f4137b604156aa03e2c041b201bcc10972f674c04137ddbf4a29', + 75944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb0955364b19a42fb5f288ab7e1bcac631729581dc6c23b4009a094cd0094ea3', + 75928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66ad3bbf0fb18cc4ff3d953f94cefc89c4368c23b168650c82aa666285be44b5', + 75952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7667156c5ecefe3f2d5dd772dd9d21c028a43ddbc78e274415c44b7d20d2dae4', + 75968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c21743bf986ee382b297c345f1bf428ad4ab8e02354e308ee7e23c6dadb01b00', + 75900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0486f8769ab449f312236576bcde4d2a4e7651c5574f4766ebc42f39f4e962a3', + 75976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e90d6fbb09b1d29c3d64e3c834d53b3599919b358a2b0c3814b789c5d09d29e', + 75944, + ), + }, + 'Bitter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6f494327c4b328b5830321fac364451cf4749a419f0ca9ad71a0577c057e150', + 147940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '923ea8cfbebe11e162c5ddbb4071438eb06c3ce42194a55cfadcf7f5a8850b9b', + 149236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a111b50bb5d05de9fa67f25962711cacdb0c7e8faa2af4558e60649a69d5d5c', + 149296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd1b5ca759a96f4062ac3e72b6b744d89ea79cb2ca70d936ca0428803562b525', + 149308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d9091c83ad94308f3b7b3ea497463a776b3ae24431c31c4bc1f7ac70942385a', + 149532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93cb556894ee5f6f1a78de555c9e0bda4c7a49e394b721a7337bf0f4a51d6525', + 149504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d53478099039fbece3448d12fd06185d4c5732acbf6e802887304437a292d38', + 150576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93a6711ed0bd66a1b61609c694d00fd64ef83344c5ad27ce7b2cd4a6447c956b', + 158568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8f9dcd0db96f490e822d9c57b0cd1f1dc7bf8ab995099f4e19a190bd02209b7', + 158264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c5c798de9644679db8b996c5b86b40d034f713056c7d147ee0fe68d938b2e6d', + 147524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '62c0592356e47440b0d42426eeb590ae2eeccd4e4fd8ed4bcace6a64075b9cf7', + 148348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e66c1544eebaacfbc7af1c710eb06c1b2384e8859e8b4ef9d0c03bc7a241ab5', + 148372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2a4d973d6b08b655a8972facf6af426e94a59fdd67830275b9a30c5bcf29ec0a', + 148284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '74e47b93ff9f20886ee6b995b003f14bfbfd5bd8788478e478f9726c9435a257', + 148416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dbfb3eb28fe8e9e1d40bd09982e13b526d3fb2e6d9bd84d612e2cb2bb3d2a543', + 148308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ca365bf6bf63201ec2e1e3d5d2ff599f8884bb35581f245497de54d39d47c399', + 149128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c07cb48d2f9e058f274c62f14b81f8d941d8d1076b34e9a0c2f1644109b95679', + 150976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c785285b39edccdce0ce2c5cc3dd0bc2717542eeea67499577a6fe0c1a412eb5', + 150824, + ), + }, + 'BlackAndWhitePicture': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41b804166231efabea2d0dcc480c6a23353fb0dd79ca3139f66667ef061ba8b2', + 9586668, + ), + }, + 'BlackHanSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '332eb07f319be667e16ce0392c7b8ac22c5642c3d479018080e91056efe4a225', + 383248, + ), + }, + 'BlackOpsOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '952681e808adde22e6c5a8b4c377f5809c752ad9fbe2044c2f7af189b7039049', + 131284, + ), + }, + 'Blaka': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f28d1a11ea10817530a561a9229ac33f356b1cf7da3d9a54e3bbc39ed500f183', + 41400, + ), + }, + 'BlakaHollow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1d434c1629f1df5e0f0fd701d0e7d0715f453372467aa4b4ab4ec8ba6cad6e0', + 52952, + ), + }, + 'BlakaInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '016cb09c484ccb4a6d579e821b330bdf8aa85e11270f4d919c270a147ecd6a52', + 367116, + ), + }, + 'Blinker': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70cda2a3be45ad2cfc4fce3f02c9fb49fa6036674fa911da5edfd2e6ab9194ed', + 48360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68395b402c7e5dd97bef235fa3ebb781798b885a607f82097ffc21d9998a4dbc', + 49784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1ddd07308d2eafa097914827e5e560c1008d54786afe03c98baaf1a03d7a0e4', + 49632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aba089cb0cf5b2715ebc8977e04464b6e018fbde24957fc76585b33a2e50d88b', + 48848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0eaca7103ebcbbb79acfd6b4d43e9f41766441925e2e196b1d7306b79c3c4a31', + 54592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16effec8257a788af0494d72d1561370e8b71a38d30f84c93937a63a8b2c93da', + 50068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6aa48a1fc6ffffc66a2202248381c493cd9db369b885fd9bcded75829a399d2', + 54240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '675e3bf1d97194fb60db3bac63f0ff1661cb47a59bb7e976cd8d11f142258d7f', + 53496, + ), + }, + 'BodoniModa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87dbbc7d3aea0f0d48c8b75305090f70eef6bc94eb7f2b4d04b239a632b9b03b', + 44728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0bfd5985d44696ec13603d597a87c02918b2bd144711a7ad699aeb15c5b4142', + 44820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dee928336743a31541b309858f36979d168085cf7a4fc691d66bca423983698d', + 44856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f718b560e3d906e9c4e1729f73d1f397df2c4a4998cc15ddc3d6366b559f0f0', + 44820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dad09be51cc7d0a70b4aac57b6e3a5131e58d7a25ade3b322a0699366d9b8b18', + 44904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3637bd6c369adee131390bc08d9e6df6371260f61f0a4caffae27b80be367a81', + 44856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0cf24a30d033cf11dcb07beb269dafc8c195cc899fd2d44245b5033ae7d30309', + 47532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1ba113ae30962c4a017618e86124f713eb56402275861fd03f2fa7379e3b4a4a', + 47684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b473d8f1c61d8341631d03c48173821de16c1084f9664c5e15406d3090c79f4c', + 47760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c4d86a2eed93eac901f592e93eaf4000dc22021356e6f27c8577a2f347c29142', + 47700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ed6d6f232aa631c7b1e7997fda824398d0a998c5e3e34d01cedceac76f076b65', + 47848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '34725af43e2782087b5833e45a3f0f559aade9e38773bff4559aee3b477b19c1', + 47812, + ), + }, + 'BodoniModaSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a8874163f42b8ac24467bf21daf54966d02f70fc570f026d4dac6fce95a70d8', + 52328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd65d3aa9b596f22eceb118c5e34c78a8ebe42be00b2e3930be4b841502af256', + 52432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a278c6a13c9aa5ec502c30cfe86a4b7efd0bf02e68a15ab50fe47965210e0f35', + 52496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e014465f19a0d76923a4a5bda825912005d82c30c29d12072be32b3f3dfe52d', + 52476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67bbd2811b21ab45f2b014d6f89cf41695e137c99eb37d29570c5b99092a4b13', + 52572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30d0acd22d905ac7f2b714921304d5958598a6a20b1036d88cbecdad2dfadb87', + 52520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '704389a198c3b976feb1971cf3ce7ae3aa8fc98dbed3bfde45a137ce73e8c60d', + 55704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ebd645f6020e23e0ae70ea041b0dc20433db948a377ee4bb83f1000a2b04161f', + 55856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9e263acfccccaa522cc770ba9b7c2b426284666958a6fdebe3a9f5056e530d97', + 55968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '61ec9aa7ad224b28ea4ad5d494b9aadf71fd7b1536c07908283041a31cdc99b6', + 55908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f89e420a25f441b4174fbbfd3d152e1b5bde6328e1219dcd6d74398c8722b6a3', + 56028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a5f64145693eaf4de88cd1c4f75f9067f7763bf436872cf374ffe3f587e45dad', + 56024, + ), + }, + 'Bokor': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cad8288faa197d80322663e114f9785a05af6b5bdd69d0e6c8815e8b42e1a26', + 75416, + ), + }, + 'Boldonse': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0004d95fcbe347ac2a98658bfc82ca18f242ca193bca4c7669df11bfe1c3558', + 55864, + ), + }, + 'BonaNova': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc7be5f3fc2c743a930ce1c29ef555c35a7eff13fc32d23f5e2cad7b920cc651', + 198216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '182831d7ae506ac276704d5a83df2c035915e3cb003973dc3d2ae24753c48cd9', + 215924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aebc8a21907deed34ae4623197d9c48e236bb8c7759766a076af20410785ac59', + 196324, + ), + }, + 'BonaNovaSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '737e6876332ec78b45985104a38b73928a38c3db5586719310d3d01ca6df4b61', + 238580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '05e6965dbf9b3fed96f5d3f1c921588867a97b97e88f3c4c7ead4382a4372190', + 253184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df10eb2e3751cdc600c97cad5d087f6557006dfd08f69721b443f7b6a4b1ba23', + 235580, + ), + }, + 'Bonbon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1540a43fadea3f6ed9f2596f39c8ff93cb06629a9b9b1c32836ddd258f048700', + 33780, + ), + }, + 'BonheurRoyale': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57d243ec59f08aad89be6a121db38923783c5dfd10e25f23d00d14e454d8c4b9', + 87260, + ), + }, + 'Boogaloo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e1b36d62ddaa798bc5c40fe7df6d951e6ca0026aef7208c4461bc057f0fbd61', + 31224, + ), + }, + 'Borel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6893593db3c57496d94fd139ca5a2f13ea27168533c592d8a7cdaa9c84feb044', + 148192, + ), + }, + 'BowlbyOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '295679a1645b41e496426642f74f4e964ed1ca4ecba18d17e2c06fd48a855502', + 58036, + ), + }, + 'BowlbyOneSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7de8e3ab5995e51e27e2e02b0564c3ed2c6ef22dcc08b03e76a63233b1c3e5d5', + 42524, + ), + }, + 'BraahOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63eddbd1328bb905c3480ec5de0b959a1b04ec2e53ff9c09a80501a395ea9d90', + 78528, + ), + }, + 'Brawler': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0d4b696165bc22de1ebf4311429a9212b02fd077f70d4132ca54a67136720ce', + 39088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4769547d4a6a1abf9cda5f8f8cd62742ba10463bbf5ea3bceb8b827a92b6262f', + 32500, + ), + }, + 'BreeSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd58c962d480e97d7b958f4cc94ff9da86bd30a95b9cea2fa0cc4baab60cf444c', + 42976, + ), + }, + 'BricolageGrotesque': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e7f81ec1406e7cd762fb6ac93ef111d6b2683914fa98164683da4d39dca1608', + 82316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1966d6e7298b6f7382fa7faa1fdfbb0c5906ec61a020190b1dbf3cc34f918cce', + 82188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '939dc04e2f37d72dcd6616a48c6545c5f357b89084766a9ee28bd3dfea161ddf', + 82168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a13292c84d3d6d6cdc2aed28340bde9db24865ec0e5e9b49fd03a4a8ada6d43', + 82220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea506831d0960376a1d3895ea68fd70fd93dd5a6d464c927898a6743e9c1a188', + 82280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '441dfdf87403d13d21f818dbba584ea5c49021ae8479863ef8d983c94f89e5f9', + 82180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d6e6be444efda1fd2d8af9e289b8c09c3ab441b8006bddb2b49c96f97841d07', + 82308, + ), + }, + 'BrunoAce': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbca71a0e002a28e06c19053cddd4dd36b766ed9df14c58fabb2b0fe187317f9', + 40284, + ), + }, + 'BrunoAceSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '315dc296253f4a92e5a13e75d97b10efdbf0f5d67b7430d9eef38d0096c8bcf4', + 39244, + ), + }, + 'Brygada1918': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba71876ebddee19e3f62e4b191c7372fcd9fdfd78656d0e1d071a3643a836465', + 121484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '190a62625d79b765b27942b6e1ecffd549d224d00415f9c2b85aa068cf67ac06', + 122024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5180e5523a0db8751112aeda27a99f3740f731dfd3cb4faa6547c62482ebbee0', + 122000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f01a70d3beacd63fc95651c0adfacd1001d003dc29cdd645a29f8368ad8b1f4', + 121940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd140d31baf9a031b3cd3946d6171a3967c9c05fad5507a235c21d80934e230b9', + 120804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a559dbfa35a755d9e61ced8a14a61cfe4ed1685a6acd0688b9e0edafd937f8f3', + 121004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '316f5a84d9a6c982e17dc1689eec6140e2e8036bb7e02a8a5a101ccabf6fc4e6', + 121128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e85e1ad860782d816e9cfef3d29b8d5c9167e6c185b387399bb2c9d127d9d2b4', + 121040, + ), + }, + 'BubblegumSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75c0878aea2de485a694ed9d6c7a7a3b2f48e6f5e8de30cf6b8bcbaf0872e1c2', + 36660, + ), + }, + 'BubblerOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1069015b76a5629afc944a3ce37f5cb51991c9a15bbed42a9c74b4995b44f01', + 29284, + ), + }, + 'Buda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a3de746e9bb57f1126ceb335a59aceb989b2f7b1a424171bd75ce32288ec829', + 33364, + ), + }, + 'Buenard': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac07f1eaffbd0a8f9bc910f1d45d64827dabbcc9a7937a9fd7e6ffca4527a8aa', + 47116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ed51154affb7d960c2f8a58b086f3e526e6655c6a143c59b8ed6574123f36fb', + 47236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be782e620afcb49d2d23658241bc5cf4deabbc98098399f30f84d935969e65c1', + 47256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '573cefb59454135f66ef26f66f19e752b609abe87068def44f83e167671d41bf', + 47084, + ), + }, + 'Bungee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa707aa79b5eac140e0b956c513c5a5e6e04d308d06047088a9c1437b1f88ea5', + 110432, + ), + }, + 'BungeeHairline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9186c591f8dab61fb008dcc20b9970794de2285d3049d941905f228d9c0255aa', + 96152, + ), + }, + 'BungeeInline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1d48b3ce6fc0bdc54f38ef30425bdb199a3c48c395add01788652b2ab2b0f67', + 143768, + ), + }, + 'BungeeOutline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc3560f327a5463c3c20a61a5e83985706e35cc884e83ed979937e46a29899e8', + 193448, + ), + }, + 'BungeeShade': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a013762d0a4a012f698a3e272235b218a06ad328e36612f72d71150395e5dc0', + 293112, + ), + }, + 'BungeeSpice': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e48fb9c3aa4cffe3742544a17c675a286135b62e3f6bf956bb2b56a69ff1ade', + 1487960, + ), + }, + 'BungeeTint': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b5a4319a46bb69e074797e8f250d37d8ada79392400e42218c2a9f879be6313', + 209116, + ), + }, + 'Butcherman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a08f622a3dd41ce4301737d1125ddd7afb8da7fd8402c9e0ab4a4dcff48fed40', + 63320, + ), + }, + 'ButterflyKids': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3129ed9c8f8c847f01b767bb6439f519af3796ea3387cc5128092c2919aae4a9', + 200428, + ), + }, + 'Bytesized': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3fa2db8be7b9abfe5aeb827c17c646a7cf2bd01491e482436186db9d6ea382f', + 20376, + ), + }, + 'Cabin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57673922f160827b558e0f9f553dd69515929e6ebdc0d2af2aa101476217b452', + 74532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be724b5efa7a6468639380c007656f0a7209a2f3bc1d9c933559ff2af8a4ed8d', + 74612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e1be3089f7de29d637d044d278da33cee1895eb1f55028de33bcaeeee1536f7', + 74624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b59a484d46568a171953fb2ba10075f67922902c7cdfae040e35382be5226f8d', + 74312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '08019616218ca5bd9e477c3901388109a6a650ecf1eb838546327508d356c5a4', + 64624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2108c8184b30b3bdba882bbb56de0730e5f025786b3fbb3bb4c27bae70a6a364', + 64848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4904427509e73612bb5a88490026ca45da7fbc1c831238f6e363dc94bfd3db7c', + 64896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '18282933cf85ecebbfe995c8f57c4ab5cb7b6f44b4a968f7dcfe7052f423a517', + 64480, + ), + }, + 'CabinSketch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01afca863d4fd3937ab012b0d0ba807f5e6e7a7f83b509c91b7e4ada36476076', + 152816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b778c471e67c5467dc829391136fcbbc249dfa373d0eefa5b625e915d8ded458', + 267596, + ), + }, + 'CactusClassicalSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2795116368f34957ff7450cdfabc6e6a7ca6e32dda5e13f109311550bc7ad2b', + 28418188, + ), + }, + 'CaesarDressing': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51c23b6b717291b768f9b032f465a04c82c9e651e848fecd3e39cb9c7da9078c', + 87532, + ), + }, + 'Cagliostro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbe7996f4c8898b10fd84012d2a7c9b93b8ae37c9759c961177a8e7c8c542a18', + 34908, + ), + }, + 'Cairo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a2c41dbf645ddb945efc81d1422f800b865926524094332e1ba30472f0a9d87', + 89756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '977a79d9ee48b798e07e87163a0ee7ffd2afa8489bacb86e731398521b2316ed', + 89808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd33c4f55184435de6dd2689c7de5c584345f30f0c3e71aac1ba192a947539b00', + 91476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cb077d8adfe4d736f82d28ca819566b679a65d48130b88ea3598571ee0df5b9', + 91652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e6073ae527edd74dbc806ae3574c81b7e62019849bdf941d370ec74e0a1b936', + 91700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cab28147a27dac0ed15216e54ee741dba1d8d416e276bfc117ccdfbfe8eeeef5', + 91640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e841003cb7ece5a9331e8ed44099b7c8617d19b28bd0b9942039c6f02e88a10', + 91724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80a528494266452a76da3083f282f066a5d1e283ac387a1935b100808e028073', + 91724, + ), + }, + 'CairoPlay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9263ab9e8e48b5d42519fd1a560bd3813c4322edab4df174c071a6f202256279', + 157528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd65a796e6842af540f091e8f2508f9c8fb475ee9124fae14016b13d48143b7de', + 157572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3d68838a4c9173e711f2aafa8e06f56090ca36971b58768275f5c528925b97e', + 159284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77d4fdc6119ef37a80321d4b6706782fbd1ba3ec8021fac3bdd600a41e611f3a', + 159504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '312de4842a63d9d51fc3bb2c49aa4610c8574d532769efaf3c35ea84b32eb4c9', + 159572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4a35efd218b68e4d18ae5a60f67fb036f07a9ef66076bbaff601facc2bde9a2', + 159528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '038b596f3ddeb0d05a9e86f49a09db5604ceda2486977c44cafbf66b17875171', + 159636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b36783e59f001c60947d2f319a9b656f14d412586acd770e2916631429f1499', + 159648, + ), + }, + 'CalSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '300880a035cb6ffa7d46130cfcb87b2016af359e134ff5192260b9362d9835db', + 69040, + ), + }, + 'Caladea': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a608c08990cba2dfffa37a9c6c939da0f7db30b42da9824b88c55890dcbaddb', + 52688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a6b6d2db9acec1ee4b6ffb5aa4692febd3bd35728a3bac0b9c53aa6ae208091', + 52184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ee25e02b0eecbdf82ca3d0d80d7857b3d7c495f5bfe709aa7adaf815a599da7', + 53752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dc6675106ad9cf787fc1c8ebc216a52ad6a73fd99a77a164f4f3233f579cf3f7', + 52316, + ), + }, + 'Calistoga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49355ccd38a6802467a856e88849563521be14f6a662178af213f6e6b713b836', + 200328, + ), + }, + 'Calligraffitti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb23a613122ae768318e74a2c270b67c69949c4680ac361cab7beb87b658ba29', + 45580, + ), + }, + 'Cambay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40889c59136e1adbfc6f2c9ecfc288478979fc60ffbb8ff96e06d1ee4b90dc94', + 136424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c9157fb130b2ecea2c455cd7c3f35b2277cd548abfd66336a79504f33944ae51', + 152112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e287ec197683097d1ae19b5df32edbdc48499205f683c822f94191f723529c99', + 136044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a8a632b9725f8a80004bfe00e7089711dd4aada5e134cecfd61541e99dfb5244', + 147412, + ), + }, + 'Cambo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27fa786e76a3e80c26f17b42a09a5fcb5224eb1a747eba0c7a2e8f8c8648563d', + 26564, + ), + }, + 'Candal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4dc685f89036ad71b1e4858b966566c37df24a51fcc500e45b8711bed0749f0b', + 30488, + ), + }, + 'Cantarell': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2e9807dd4b7e508027cf55ff36d7c2e4d41b51c36c41e71dff2fcd381ecf746', + 42120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '745860d7ef7b8a037070f721c57408f9da3fbb4998351d77be40c73458310e58', + 44692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb139130303a884bc9491fdf0c0520ba3fc1c8655e89ebe9df760900bb0d8a54', + 43904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c82247fad51652010803b9408fc650870cddf203e377fb88adf76ea26e53542', + 46812, + ), + }, + 'CantataOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd957320daa4ca51d9e98bf3ae1c3b1d9fb01f7b240e834ae2724daa2c5770983', + 53244, + ), + }, + 'CantoraOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29281c9644a5f1607e3648ffd8224b3f9131d719b6a91144e5da170531d79e68', + 89764, + ), + }, + 'Caprasimo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af5037f60ee356b1d17b4d7c8de7e8821b8a025259e5dfe2e52be449ec4eff40', + 41004, + ), + }, + 'Capriola': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd5074183dbdc83f16b66b9e3c4845513a45ddbc0a01ff06c997352ac5c74c84', + 71856, + ), + }, + 'Caramel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7832cb8b2ccac3052a589b6a6f08009229512b5f89fbd97638e5cc80237f4b2a', + 77520, + ), + }, + 'Carattere': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b68d214aa8da4b7cdb822b53ff1aeffa1eeff64a2b438d78535ee1b77622d3d3', + 78460, + ), + }, + 'Cardo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7f591f3629caeda6eaebf8b0222f8b1770618058e41e217a863032db8a466ff', + 386276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5e2df2702d6bcf676d44e8daa8b434e3819db06036b20b2d4e7eb8712638232', + 252596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e74853d288bc38f7b6e973e7576916f665d34f2669437e4010db3692d1d7d95', + 339964, + ), + }, + 'Carlito': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37a3f0cbc893bb25232c1e1e53edb14e3762788bb6c7b1121563ad1a79a08d43', + 292856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '760a3b228683645cd8d1c6613ea685fbdd9b34bd9de326a1a3a092309ae2eae3', + 286596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a43685ed723b65200555f22d532c2ce3827e7d0719eb59a14d1906f74528d413', + 309100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0e3da8b8cdc2c3caa1a53c4c8e36b7f898caf15c4c6581a87e0dce086d07c690', + 420892, + ), + }, + 'Carme': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efb93be6605ff0125172cdfe1d407b26c6b5618e11abf9470b94b7a480084e86', + 58480, + ), + }, + 'CarroisGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d56c13ba27038572675beaf56f5ac70642f69d6a2a0312be32d4668ee115bbd', + 24360, + ), + }, + 'CarroisGothicSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cde765545a44feea3bd1d1665de6aad01bbbbced1b619c3a462bc407febe8560', + 24328, + ), + }, + 'CarterOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4760a7ab535233343fa7c9b369cea29cff849a42a87fc541a879194800cb684', + 62004, + ), + }, + 'CascadiaCode': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b78e01f76a59d9ec5009c06482bddd1de23278fa27ecbbc1f8e63150a70c81f5', + 408380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30ce9ff13beeb49d07d418b9b25a009b6e114d6b584fca90fc863586c77c5a82', + 408812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0679523c83426a0ceb4d594675bd0ccbe80e70e0b9c5363b151657ca8c48a53', + 410180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9e75dd3bc6bd92b65716408460dee8b63347d3483e0eff83d3122ab353b9204', + 410584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3dbc1902356193314ec7ef430d4bfa3da3298c04de55ee4525bfd1afe3957c88', + 412112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20ebbc30ecc8b59453e0e4194b06a9ae1341f8c00db54e93f2db442a13061e65', + 413176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ed0acfa7dd930b8cfada1731b05529c2cebbb3a816e9b7504a5b0bbd0778832', + 297252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dfd00f1307bca1a1c56e4e91617a4a8b7cea9bdb224b1dc652ed35b9ba4bf1b7', + 297516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fa046d6b2f63b7081222df147538e52c520fe32018c52ee075425599671dfa7d', + 298928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2d5c7b186035cb992f53687e295990c675abe70f228364809626ee637d5d897c', + 299156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e78459c03d1e305f1363c41a4f05af1efcb3879c425d3aca53bb72ef47bac45c', + 301324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1ca7e8d82ce826fa3a3c027a1fb9094af48f16dc129c3e1c5546d359cca3ac5a', + 302088, + ), + }, + 'CascadiaMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c781b66357f729f927bfd8aea518c397a857e0eb752d761fbe748068fabde2e', + 352424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1a245813153e9be2d13ac1b9deb51f434869e6ff78ff38b514db44247618ed1', + 352852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0017ee7181298110a5e595699d7b5d7aa7cad019b40faeef4913f0563fd0f6b', + 354264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bec10005a8912b4cc3d95ce1dd2b01170ba1b6e4e39ccc8b559fc8c9a7419a0e', + 354604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd137b24fa7c038457e97cce856f10b9c592ef5d3a777c77c5e87b2b05fbdf1ae', + 355236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5aadac6677a7f3fa6c9e94570bb7fcdaa47b2be06b5573c79d46d5d2fd29ed12', + 356164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec8f851e343004c5f8c29dafdea5328d22786b39f5b3137c1f74cc08ce4718b7', + 263224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0198fb2b965e4bc5032ed3533bd1af0210d28f172842c01a25a82ff752212d0c', + 263488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '842da9827afa1b85b2b5bf81a3b32df29a430be87d29744539d9d886f0cdad8c', + 264900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2809976e841f31e3b5a5c037ebbcc6cbec645118eb0928788f98b02af8ed85ad', + 265132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e90e078350de5d9a68dd5ffa7c03bef54e49a9d8b2eb177899bb4f9030cc77c9', + 265928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '511ff0069e92e1a9844068eb5efc2e60f22c649efa84d7f7d36d87e733d51103', + 266572, + ), + }, + 'Castoro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '263e4a400a98978c39f65037f0736b3a7e099a2360a68d31d8fd9a52c5f1b1f7', + 70664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2433ab603c554f7dabbbd49e80334d860b2adfccd483980849b12b9f1ca44aa0', + 71916, + ), + }, + 'CastoroTitling': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ca648796b45e07a1bb36bef90d65c9210cacb4eb33153d96ecee908dc184252', + 41596, + ), + }, + 'Catamaran': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c7c82f1546ad9175d942cdc18e41a8fe8ec0e86c26397edada35bdefe15a903', + 51644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dda68aff303c5c787e7235bf26d193ce628e69dcf2e4b72d1fe16eff9409f1fc', + 51732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1ae8d578eec24fbc18e5b74c8dbfab5a7b29842ba9b387cc56688ad5b065a61', + 51700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '026fd52388fb9309310b4a8978e046c8a52c10d4f752bacf2c4746a619592d14', + 51652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f73131a0b591e464d44d547edd281e3aaf56aa3efa8c417de906d5e3348041f5', + 51648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8459df0e9cdeba92e163b36c35ccea205b76e4ed4eb224d9293769e02afa2e76', + 51692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '497146371fc6dca4b026a5bdb31ca3a716e949c75fadf68e3bef10312276b520', + 51612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f346c574de83eaebdffb01b97b17563b3989e3f144bd03c2bc73b8a4ec17400', + 51684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '102129cfacbed69271fee87f35fef532213e503a719337922813f45427827113', + 51592, + ), + }, + 'Caudex': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9caaa3f25cc44cbd53cc9a106bd7cb165b93b3bf3d72b17c8a4137373631895a', + 436948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '17891fa7c06e90b0227cde83bd98ac884eee5d0a745b585d9118a90dba90de0d', + 529236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eab9edff1c8e361554bbac6d9882e46e98ca184eabde29ad23c156bbadee4251', + 441876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '98523dd689f193c4f3630cd1f81d11d4316b8d41bce05e58a0f9b44db4ff4ae1', + 527200, + ), + }, + 'Cause': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7adfa85e68a23310626b41057086f8e1202e3a7020668e731d6e4afae96679c9', + 54240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c662f6337a79e8657df504e88faf695c5b991e3d0a6553db89f93d8321d2b08f', + 54432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4fdda55e40211dfd1b26545f6a25fe6b223a50713a5f6ac744fa8dfc7c5c774', + 54524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10f10a07531bea69a34b2e9811acd3a2fc7520e56a8eb165860a94dd09f8a3fa', + 54516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0292eff7e19ad305d00e9539eb28981f7d24b534320cffb58a23d4d0246b1e2', + 54580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e884bffa15126003d44218d51da8eaabaa1369934eeb7b8c8d2ce1cd21ce1ef8', + 54624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1589274cec1a84f9ab4b6ce6121ee6471b799871bcbbf6297bfacb8cd1a64b9', + 54564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9e6f04456fe3b5325422da6f4ab21759c17065ae55235788acc38a112c11da3', + 54632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '812bf71f972ec5a0df8fee01c7d0cb878052b62f9eeae9d04750547919bf71ca', + 54572, + ), + }, + 'Caveat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34d93913b0b739f8049d0260b968c4f370b7fef57b018f81820f67784c067213', + 251000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd52370c5ab257b65b726d86455ffe555369e12894f9e36e988542ed070b3a6c', + 251728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d988352c5dfe7470c2a06a3b52f61c83c1504a62a19e9103ca095ed9ef9e796', + 251792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6ed5c0085b69b0967290b0f1c184af8df4ddea2a781f61537910c0a772ca07c', + 251232, + ), + }, + 'CaveatBrush': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8039f150bf7cd4d8159591276438781f806b8180a619c5bda5c470dfa58ee417', + 231988, + ), + }, + 'CedarvilleCursive': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3853f19c877a257a4530227f7621766a36526f5d3a5b3ded9ef834d561825eab', + 54368, + ), + }, + 'CevicheOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b7382d6fcc736284488b00f11403b170493c91de0ab7fcc4f33429ab0fe1a9a', + 35020, + ), + }, + 'ChakraPetch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '366a8b97973fa618f55d461270bdc301121d22e206d8f482859d331755f852eb', + 70556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0b36b5d28624296c9ba25a5351a67b5ca3d369eb1689deadc06dfeb1b76d988', + 72824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc72a53c77fc2b683549847888d951e285e4469a7b3b22d83be4a47ab90b60b4', + 70260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f46e783ebe92efdb0816ac00abc24072553206cec80e2c07c23ef1b4a8b01622', + 72512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4612915b504799f8fc86ef61076e05bdd5081486cb184cdce9ee77de92c4ba71', + 70252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eef1a1e850329e0074fc8c7aac012420d15f4c947bfc0d19b4e9551fe4e0e672', + 72600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '056278bbed0a9da73d4eb587b8df7d8f5ddac8f31f0a10ded53b610cf01b6af2', + 70240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '23c0e0ccf0cea3914a6694572c4e61b506ae02172ae4065a1b518d5e6ea1db47', + 72604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70fc9661c86179561674fe27cbd792ace050b98008e63bce6d6fc694243a6f0a', + 70140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '900d79220a51a962d143c8fe60f7eaeb432f9d6e1fdf1599adef68dde7ca97da', + 72476, + ), + }, + 'Changa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97231b479f0d2ea3b19291a93d4c7ad4853b055103b5468f383d0441ef7a9cfc', + 64472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e002a4ee5213a466408d704a1518912989debfcfd492026097995aefdca22f2', + 64368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c798bae9e298f770222b245ed9485b50d2babe4a107ffb15287b9fc66ac88c2', + 64020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf6cbb20273cc858746209206a8d0ff6a841a922aaa550938dad944d396dfc1b', + 64316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4586bc2a5e02d7f4706ccfb90835cba90716f25310b7dad6e4aa3c7e85e1c2b5', + 64932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e3dce1d6121df0617a172da889f9d954392279df16f2e6a5780ac4189d89af0', + 64864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9640f777ba0f06c65e806ba625171ce9a62e225ddc2a0e669b24d10931ed4ff7', + 64656, + ), + }, + 'ChangaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e740afe6b1f7e9fb62b3d36608b212d5b63e777cd9ea41a805b92b8a78bb25e6', + 20724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '13feb5b8b7ed561f815e1a9bf432a93fddfe1f3464bb576e38d2a60aa7aad5de', + 24172, + ), + }, + 'Chango': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9534d415a24945dbd94e0efaf42df21155d912d3060853e20d85737221cd3fae', + 38420, + ), + }, + 'CharisSIL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a191eb37d444d6dffd814a52193c4fe16aa017c125c65ea6c9830ba1b30a945f', + 345796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6e4f9c247dd444f02974110c60bc7ac79c746625f21a6dc43e8fff23b288f4d5', + 363744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84699f667f46b16f268c1d3bcbf4ffa7e9b1bc0257d3e2fb2ff69d2d10504397', + 349680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6b58fe85eae962ec890fcccb709f57f15d4007b732347754d89a7c59b74d6468', + 368536, + ), + }, + 'Charm': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '805313a37363a1521f683fed5b8ef68dcd8ae9a3db9c69a72a12ae7889e7930c', + 121364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1da7bfb9373f9dc1d6b8cb82bb0be55c7aecc524c8ff37265c0c5acd47bd731', + 122196, + ), + }, + 'Charmonman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ed2c2c9c7daf4533dff33573fc24b2ab9cafa2cd3affa6c359b8532a86897ab', + 100980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed96e21eb020b073db1b3288b2ef42265d633b17fbc6f957025db03991a899fd', + 100712, + ), + }, + 'Chathura': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6637267a985018c3e67f9ac01e4fcdd6ab1ad56f0f369c10d05d3e982804da75', + 335472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97ede1fa6f393867a4d0f899189b21eac7ff0bd30c9bffde871e4eafd1f9e376', + 330852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2d6e7a76463c687914240cb54d63f68a7213bfddaaad256e768f743d4ba35be', + 321032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b1b175f2c6eb92504eb135861ee4f88380fa3db91a1b301e6a8aaba6034645c', + 319868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd542a062115bbcabf852a8a14a376723d9a99d5cd08f5cc7b3f5431eb7f52eac', + 318944, + ), + }, + 'ChauPhilomeneOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed62031e2e96e48424c02e3e17ca7099d228eafa3badb57b81830a314728fbf3', + 28812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47e0587ee2c4342bcba38e1486b53895c581d4791f479379c939b7b978ab9146', + 31984, + ), + }, + 'ChelaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8c444f87a82945dbb5010d0c8e2900ab1e294b15407283fad896213a73a616d', + 33920, + ), + }, + 'ChelseaMarket': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2306f38adb90549a43662a97fba5e5e3a969b8c9b3a5b226d32bf1e3cd1b3897', + 170496, + ), + }, + 'Chenla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e74e2c467a8f646a0f699cead2325f0a206c4d4d5431b862cba8e61d97618e72', + 175020, + ), + }, + 'Cherish': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bd69c007e18cfed9b3f6ec63f9f73ac42acc47cdc450661264b01e77f6aa5f7', + 195668, + ), + }, + 'CherryBombOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b750267ed6d92bab747c8bb9462885cb1cdfc6c89693521ec27248ba9be53762', + 160444, + ), + }, + 'CherryCreamSoda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c37f74cecb039a0e3b1c4fe9e353f9529616965ac05df4efbbd5efddc5cab65', + 38940, + ), + }, + 'CherrySwash': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a67c75eb199c5b9a146171df7ea176024772cd0d9ffd1d35e78893d67af5758', + 28448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '441edce1bffb6c29b6105afd9bef61355a8a7c2f569bd36f20b9c27f8d6a0d57', + 27936, + ), + }, + 'Chewy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '396a57dee26f8e1c4ac065b3ee59cc5cae206e677f4e65d246079f00c3b6562c', + 34696, + ), + }, + 'Chicle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5db5852b4464efdb5ce7165a8030bee21f9ddae8795c50e11d17214e8eeab8c5', + 38888, + ), + }, + 'Chilanka': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11e23033a8afa7acf8011c8a95774221d65c87423f8285331e1d5c3594bf34c0', + 346932, + ), + }, + 'ChironHeiHK': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37113490dd819f1d82203a9bc7018150fa787cdfd1f0b207c0cc3759a9f0e361', + 17750372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c67250a7a09a9d1b918a59e083fe1fcce379eb48804d06caa323d3ede3b6a170', + 17758184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0d83ff2537247cf32a97c296083e1fedf128971259fc694c3456de2ce7dc09a', + 17752088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2a7a26a2543dd7f0f4580bbdd241703f8e7b69675cb5c47c16bf6ef39c3a68a', + 17748788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87b400649472c55796ed5c51ef104e426f9aab3dacb537470c4aee879ca84bc8', + 17747560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a181d8338e272738b402b5031f95d2fd644ae769b77aa4c57b4e905cc52830a', + 17744544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b62fc61f0a7424dee3fbdfbc6b552eb02c22446b91be9462259c4dd77588397f', + 17741652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c70ec18fe911153d9a2088f444d6e9adeb4e2c9ee9998adbce21cdeaf5f0f7f', + 17740592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3cd9f60610ef49dec1ec7604ac126ae5c1b054fb6deac9bd5012f87c7be76598', + 19092508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '25d1e8952cd1b1f1a11c0263d9cd8f47a25a529fc1c5969828612b686c514ee1', + 19096372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6cdd6425638f8cb40d9639fd84b3e82e0c552e3d435774aac5b4540db825fba5', + 19090656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96c1c9d62f6ca658263571b9ecbd6c4e198fdae4c9920e14756c00830333be91', + 19088220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2d90509e5cceb61840189b71c7915e0923137d5a9483152453625bc5fd31f4fc', + 19088728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5a1faefc520b4c78ef5f7572ff7dc9e35259da0bf17dd68d58791aaff07a275f', + 19087492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd60ea4de8199422cab72d93fe45f50ce2c796cf7001ede815ba5c0b8aa5fa32b', + 19085484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd41aa99154b300893caa39446b27e15231602173f87b05e117f1f77f3f9e59ec', + 19085272, + ), + }, + 'Chivo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee4560cae16e00271b474ad8497be777a8526cba7f9bd7b185c332f2d2f39dff', + 78644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29cf22f1fd1ef639224e09be62cc92b43dda5e9e0eb5b1a5630e02c76c62eff8', + 78876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47f22c4d5b16bd3e6cc5593abaaf89446253bfbf78de6d6ea356c867c6122a3b', + 78796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27d57d8f15554f555b7086645bd19842555ca80442c824310242d076aba781e4', + 78876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8efe9bf8806f2053f761501881d2e5bf2f0acc8a52de15cfaeb27d0b0d57909a', + 78920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed24a2af42b17b7c36497ed07dc8f84e14244022d238e085728a86f81dfee1f7', + 78840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1724f8577394845e6ad2e9a380b0057cedd306f1c2523890d2f02e973dd3f7c', + 78760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe4354248e0b28a9704a7eae219dbc59c31324bee38185ae71c2ba63fc59c29e', + 78776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f47e4403ddf013adfe9aaf73da0db53cd040881da9a6f29bf25063d3303ed15', + 78692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8d5c25d880965e888bd6f5da1c20bc4cd44c5e193a1f6cd4abef22e2da7f4a0c', + 88020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9b26d4c07b7f90fd3bbf416aa29430a53922827f1a3313bc3c174f2296a49c56', + 88120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '41deed955d867745e82fdc1a2b588705a21b1320990a06412c58ce5b89c844d6', + 88096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '30dc248eca8c0dca74faf2a452b31728bff65b1ab9dc1cfe84eb4ee3280104bf', + 87956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '03291b976b4f3bf06464978a3cb0be8dc4cc1823c61e44392929c1100f603f90', + 87856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e0e09cce33b20996768ede2bfa68c719298e3eaef399fa4f64ca0fef5c9b7f87', + 87940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4c5fe0c1924ea0ed2d5210d437c54cf28fbe34259105b731d9b1d0dd6fcea924', + 87868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a65055f3a57b770c0c39fc016a3a184936926c946ca52b76cb88da92ccc0f29f', + 87944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '549593fd02b205493db5015aa7f812d7d5cdfc6058b03e3323ce18163f38e779', + 87808, + ), + }, + 'ChivoMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88099c1cacdf04f7fe82e6e183ba3f62847017f14858d28f6d66779465dd3d20', + 59276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2aa6f34c6c75e8464f80dedacc2b4576fbe1af9be48f8cfab1842c40e4785499', + 59460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f4d61e3f320e17c2736194325a840e93a10e5a8a01f3c4645e7e573aaaf5ea6', + 59412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a35e6f326a3f16149f8dcfadf1f10d0c2731a9de5314ab91e9a214cd17a54d07', + 59388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b02ee3d34399e79561bd7b58efead25e1d9ac347272661b8eb69fa82b38d518', + 59380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '377a84e9530f2f077e4c0964e2b2cf8143bf75080b99769405d5a6fa51faeb97', + 59384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b0e3d0e17edaf3565d45a74a76b5eaaed1f2226fb79c823fe05bb1ab7ffeebd', + 59332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70b8cc25d01389778822bc663eb8d2f9353f5f0bc1d327543527bc07d71e0bab', + 59352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08777723730b86179d47a3417636faa64bf59b38063eefbc4c505d8430f446d8', + 59160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd9272ca697207a05d87a6bb6e7d2b7ac00cca606f582f2a5a561cf4085492218', + 61960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2620bb0ba263fcf7856e931f4b136c4fab39549976cfb68f5389b93e836c2303', + 62056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f8b70468722e23d5b844c9283cf2c307c828c4d3ea31fe966a37cdc64aea6192', + 62000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93ea0a48ca0068e162928bbfee66cb601db85caa0611acba50fb8984be801d68', + 61840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4458212f861fffddf931b3e0e2664198f8201de1457a4df2dd2d64307d8f1013', + 61876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dd161384dedb19d87489d8a76cfd31e4035c26ab3965112cb46cfaf9e40a214a', + 61936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0e8046d28fcfb9c4ac2a999e9db86063bc302529227f91537710c5daa14435d', + 61796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5ba086462c9a87cb5202f3a2138623e29f94f164d6124cb1ea2cecb121a9e9f9', + 61928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9871638414effabf947bb7af55820313892826bcdf68cab4216716e349c86871', + 61584, + ), + }, + 'ChocolateClassicalSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9256e6a8ab4a2fd4f75bc7c4b473eab88fc7c17b53abeba0a94897862a9ec264', + 12008168, + ), + }, + 'Chokokutai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '825e18fafda3c81514e2ea092733e8df3291c185d75ea6b0572f3a27bb7a52f0', + 92000, + ), + }, + 'Chonburi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1bb1c7619e71e75696ac962d2ccc496ba82e84936d0e03f510f76644bd3339c1', + 108448, + ), + }, + 'Cinzel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b409fa3c70957b24d9e813e2984f6b9a9f65f4cd923085b14e1cee1187fd5b2c', + 45860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4cbd55f488bc4ccdbdb1d49dfc21dcb258bc6f5345d088d85688c585ebb2a0c', + 46024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11e04bd76227126f67fd88ff0a8c6f01bb8b07bf3fb66665c5f5cf8045d3f0e4', + 46092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '290be52aa785a3a47d9ce55e6118055597f335cb3c9158e7e776e4e07f1f924a', + 46100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c9f0d9d75dcf6e58c9160aaa1c20801816a2c08c0a9c3186c1c0274bb10a2b9', + 46172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b0ea4c44ca333da02b4ae38f47375d93604469f4040a9dfff8cdab315eee3bc', + 46168, + ), + }, + 'CinzelDecorative': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f31fd32b77943c0bbf085ffc4bf9f66693af0114193b61fd4b3f60ae8500b35', + 58416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e80501486ec4f395624b5a33a8ef970b7a17db3ccbfeede8781088d00ed64a5', + 60288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e43f8bc0ed73f53624d5b36610df673416e9ba38707aa15a99c610ba660e4994', + 60640, + ), + }, + 'ClickerScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a3d32b6e41e937f394b1b3d05fd071fa9fed02a2b5af57875c3dba053aae08f', + 59832, + ), + }, + 'ClimateCrisis': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d527f31862eb41259e8927631b968e30dad29d78be1c1751ee0d9665d78f65b', + 64988, + ), + }, + 'Coda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '179d46f72eaf825cebce3c1a4037e8be3ee7107a465bffd11236f1c025ef2d80', + 31864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '692528a940037857c68897274b20f77e1cf4240ccc69413d951bd06b0e44ba73', + 30084, + ), + }, + 'Codystar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb43ce98579b1afd5af7a99e544348938aa9ee41d3cb2a03afff9cf2789a500e', + 99236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af23a4b6ab674846ffdd8ffd5dd70734cd48042c8d914179f3ab7a8bc487b529', + 104248, + ), + }, + 'Coiny': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f3c40de2bf63f12ebf044bd2ea0a78acd677a3bde56d5b720a52aa455ed9910', + 136380, + ), + }, + 'Combo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63e551ba21856ae22e87e163f39ecc634f8aff6b45b59c9a09cd08f49db78837', + 34412, + ), + }, + 'Comfortaa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de814fc0e38c179e2a26f9ca1d578d6347e209436b02176713d7f94448d29ad4', + 109976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbc6e401cec88236b5a768669a49d3dacbb8ae3efa717c031b8bbbdf38da92fa', + 109976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f903ca8cb6ffdcd21ac7c7673eb4d3fde5b0208ac1cfc723bc27d5a7bcd9d08', + 110028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b26509645900650134a239738515e76809818b4492b8c8b0130af443813b168e', + 110116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d5e9b0471c85f9a0cb2757591b404371bff9dc3141879ff12bdaaf755313db0', + 110148, + ), + }, + 'Comforter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f883eb9ea2be05092db1475625813b36e89e6b86eff13795d73a5cb9c566496d', + 149600, + ), + }, + 'ComforterBrush': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf3546ff121d26ba4d9daa38e51bf3b1f5c07161bc7f467688a1318a8cac3f02', + 600784, + ), + }, + 'ComicNeue': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c844e44ed44aa6e992b084dac6e1726c2534dc2e68510cfa7974733652174eb', + 36500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec955ae32726c6784f3fdaf7edc1b706d2c0eea21752c14c6dd80b69777065e7', + 35432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f05b5543c182a50662854e9a2a12409cca8da8ce4e6e84216e3a940491430b2f', + 36552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9bd85c3ac2c6fcef9ced3997bda12f1db7dc2adaa66390b4a8fc4480be5ee6c1', + 35492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f960b5c3570467598146f3db4838d85c9b6ca08d35042781f4c03a88449b9c0', + 35272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '62e58f5a9efa7f2d0136e24b6fc699be49dce8c12cb008cca245c008a9a95325', + 35488, + ), + }, + 'ComicRelief': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1568a9c6f23799c62ba72a6293b150e248cd3027580439db80fb91ca5f3a1370', + 51360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3b370210cd70a73f15d080e5f4c17b78b8e995078d5801d6387034f5c8afda1', + 64848, + ), + }, + 'ComingSoon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c86be0372fad98e347efe9d38bb976a89b9f2eeda158d59a169a6981bdb56990', + 46336, + ), + }, + 'Comme': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ff26bc247f96576d5971864c0de07e7ba7dfbe6ec7d57499189c1c416e4dc47', + 42116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '039758cb0691f8526fc7fefc9fd298d2485f04176cc25e56eae9efe5522ad418', + 42116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c85be003b031155eac324e4cbe5100277e6daf2678c6fc878b6db0d918bec31', + 42084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4086cb26105a4cc1d67af00c2c532e131fb73171ff8ba1a7d4ca7fd40b269549', + 41920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f94de71f960ce732dde767fa33a0972e700c5fd3a0d47385f604de237e1ebaed', + 42076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75bfd59f31972a40f85415c37b227bbe93b1076d6577d49951a1016364a3e5d7', + 42180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fa46e9e09f05c21e645e1f78f698a0a41d0bdd2bd740111190c7e62f5ed6a37', + 42196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3cada83d44eb0180906e35243f79e1e2b52057dcf75484b68b732819b90e3bfe', + 42324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80fb1453498a28e035f4bce17dc70bde62bf8baf0b38c9cc666d9e8bdc335993', + 42356, + ), + }, + 'Commissioner': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '339bf8c6d469a0f742cd13fb2f5c3a9e62fabdc61c0bf0af9af0b11483471861', + 158752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8c50d598175f3b0dacc57f6250ea32017918fffc44806db7695ac0c1a694e1b', + 158884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02c9513bc3153fd4cd9fe9f542f6fc1d0cae4176bce21c6f04cd9ec69d8fece1', + 158880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6106cf21d4ea87fcebd651809f90f0e1fab6f2d15ba7a1752ac5ccc02de80eb3', + 158824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42d8beadbd7980a9c01023d9d0d2e684cd5a5a8dc1320e2da9f4936ec9dff68b', + 158872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c6ab3851c3a51be49134a514d6d0af2c7968b1070921fa5556efa5fa26c03b2', + 159028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18fa9926c683aaa1948594c78865d2bc6088b7680e362eb6efd3531dbff01f25', + 161464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '671e70f9103fd06213bf649bc9c2858ea9d47356f11b6e3ca865ec28cd92ae60', + 161892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd2608cf952bafc085b5f7967222ecd6f2c40329eb92055c74be088bc46da88c', + 161796, + ), + }, + 'ConcertOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9650bddc65f965f89c8d9d4a7f1449317d935bbd563904c77a0319b7005a156', + 43400, + ), + }, + 'Condiment': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '258578e8271e6e8d7ba14d5bdd83adcff98c3d11830edfb06ac795d65bca9345', + 41128, + ), + }, + 'Content': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b63549a9d5eb26e7378c4656aaa6e3e83a8adb06e27d03e45e0b0feaabffac3', + 193068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5aee71461c51b58d917c4f089e76813858c1a5dcb2e254c492b5361fa6f4c5f', + 186456, + ), + }, + 'ContrailOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3e2ab3725333499ba46fb66654deaa7a51c7496ff44cd5dd2c7cf62c3653f62', + 28696, + ), + }, + 'Convergence': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9f380c8e4b4ffec4673f16fe17a3a78ba5b8ef98dc44bfcdb06cbc098f03f3f', + 25296, + ), + }, + 'Cookie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '428fa6ca538ed8886f2bd4aeabba4dfe2f0085e53a343514e003caf63160fb55', + 41596, + ), + }, + 'Copse': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4beb76d6be891ead9dbb2efca80e14dfbdd4efb8176087492cd76a7d2572bcc2', + 49732, + ), + }, + 'CoralPixels': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20ead807e97c101d0fb8e55f8e7d73b286798a17b1f16901b8978aefb98b9f57', + 395092, + ), + }, + 'Corben': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '205c2fd2c27dc5ccf465b23d53817cc2e737d0811f689780b81d2e35322109b3', + 33868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cfafceb4e246adbeac3bf5511011c31fff34e084a4f1f8152bcf4ef5b1a6f64f', + 70052, + ), + }, + 'Corinthia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '361f9255df1b93c523794670f9a65ba078650c90559ad7d148a986611d848f48', + 111200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f7a7c0063791341c5f8ebdbfa9f1a4e1e66ad16e065131637aa7193cdf29532', + 107296, + ), + }, + 'Cormorant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8e5bcdd036d8c4d9632340358dac0c75b34aa942830970a5fe609075395ee3c', + 176780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a00e59ce4b036507aeb34ad7351c0333225d05b783a6bed938d5e000c916e0a', + 177308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '400c79280cb6bcec5b70d87b24b8c241a796be16b95d8d5b0019a6eaa9258351', + 177472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '884c4fb443045dc71a3939a7ca62ead0aaeb63aad29b48c96a4482f0efebf84f', + 177456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0867012db49f9116d7adf37e752c4608bd33cbfc548bca24e26124d2feda5fb0', + 177280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '39778da01d72dc6761c70c7d546c49df7481b9eca58f0e05d60ae26af97c12df', + 175596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ceab43dc1675ca934ca53ad75e8e8ebf2a1c65b989473f4fbd59983105ebbf8c', + 175800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5952d29e62e0521dd4a66fb6b622ee9eeb4608908c11d495cbdb4069b082cb29', + 175936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6098f60b1b206a705db95cc5bae4f2c95f5c457f10e7d44b4dbc79a51666af6b', + 176064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8a190f44ceb1c58cdafe19c9ac572b0c172730cb81b614eb34ba4dbcd5f4d2d8', + 175728, + ), + }, + 'CormorantGaramond': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f988c16ea5d0c49fc54534197962c6a42ddbe10d0e77b8c5245afdd2c5248e03', + 289764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c07e96cee434788b6bc27f01aad59694fb13d669567a5c2069d0b96faf99a4a', + 290212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '037d2916820a5dfc42ab60f212f7dbead93803d2c2777a43ec4f8fdc03f5fa24', + 290472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a80215d7bf14a80c8847f5b7de9e1851827d576e499e081a2aaed0c56a96f1e6', + 290368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd37bb8b03e6fbc6f56dac02685bc0868561fd3b1f3aa093d25cf556d9aa5dfaf', + 289968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3ab6efd32165f1d1796625155930406b6dd47c3f6d6e40b0098c56c495c9f95d', + 292884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd0ef4f4baecdcfd1e1d082724298d4ade1d657be97e2b124a6a5d928078846d4', + 293016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6986dd6e4d329ee92750ebbf0676c55bb19b37136f00a15d220488fe8d0a3cc1', + 293224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '32046ebd978ca22a73b128d8063b3136f8dbf36602d6c37ff04301b36c2e5892', + 293292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c31f7c3a92a5770056a9e4af9e65eb231598a562b15e75a2223b93b9c9a0f00c', + 293096, + ), + }, + 'CormorantInfant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '317fdcff90cbff2c49a145726da96bd1966b7729ed4fd77285b5a45151ba3de6', + 273168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb4d3627ac62cdf36860c95b59a96cefda731841a8cedf9bdedcccfff9bd04d8', + 273548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ecc5c660bbea326e385689bd0de2de24f9a404303057f3e71d0be2d9e71828a0', + 273824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec7261529f864a04e133b340cdc503c417ff9b9510a17e2a95c977d4024bae31', + 273692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '684fc37c9d0e23f8ec1d7dd0cb6cd279dd2216fbf1b1d6367c665fd409ccb0f2', + 273344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ff327a049aba4335a01cdf54608e7e8570404b8bdfef5e956a7cff149d60ec6a', + 285096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e7ef1b99d725edc0b2ef1afc9faf74fac0537398c92e6ff92360c156878a7021', + 285192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69e21ba9ef491a9f430634fc030f4be4933a948ee3454983ce1b1f98b657b640', + 285348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1f61d8acb95deaf33d6aa5645d4cecac7fd517a1ed4f18f58fc4ad624f0aa033', + 285396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eea83cd4e34a8fe2289aaba3a833e158cd8999be92b27160a9d5222fdb07113e', + 285180, + ), + }, + 'CormorantSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85b4bd58664dd286d0d370b96efcf0153eb3dd658dd899583b8d678c4f2a8ffb', + 290684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26f5942a4ec90d92a7a1815285b362c5a9fe9babf4530a3d4fe6b2dbac4d0c0c', + 290300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '085213d26cf19015b4777138ea829329a518923ab66f01501879711f3d0560f7', + 290312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4a2bd6981d93f1a19298a9ca9d4f11c9220b35a267563202ed0824b83a1b6b8', + 290324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d583a989d1d6aa4a813dee53173c8216ebec5ee7dbd1e7c1a4d4ab03d19c2c5', + 290828, + ), + }, + 'CormorantUnicase': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '773a2ea08f9e222bb262f09a9f5d2f7389dbe2fc0ee543a83de40e69f8e5636a', + 291536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5963fdb011b432df8f18173fbf6dce629faf5f87eb1a52c8d6c43db26e9323fb', + 291128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8e8e18a1b8138da1e4fa7d58e151a982fbd1a88ac2342cea1f9f11d7bea5fe0', + 290836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f4b443d217efe1a1722dac37bd30c68e2f9c9cc538c3d8cc9270850cf7c0726', + 290756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8be842338177aeb9987f08fb85c97a2c0d192a236b92a48e2517de22959be5f0', + 291260, + ), + }, + 'CormorantUpright': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77cc37f249a5a466533cae80408c9e3419c0d17ad9e28fccfcc0d87999963a3a', + 111356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c48d42c8223696998a427f7daefc81e6605f83825c311d40b0877f1dbce141eb', + 111072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '823698bdd92f6386a7571a2cbbc424c874e3912ee1402cf41502087a8e6c84d8', + 111168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90744d331e5483d2abdf4f30a9793cea4977f573d557d37f64a2d3bc211987eb', + 111212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e75e7db21cf3b1b1eb67dfc42a9981003e74cfd2b89584ef83cc9610db57c582', + 111636, + ), + }, + 'CossetteTexte': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0260bc78f5439d1fda73efb24214037ebc49a372b37dd5bd7f93bddd76cac4e', + 36996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f808f7492f5e650d779094098484071bcd410a535a62c95976dc55ea0ab33014', + 37016, + ), + }, + 'CossetteTitre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f916358a6f3aebf5bd5b8f036810399d53ed63a02e1ec6c139eede9d2f51029d', + 36552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b01110821931139ac5c3940032891071a78253862abe6b691bd46c6e6a2d78c', + 37660, + ), + }, + 'Courgette': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35c5f22c671719583502658587426f1551a0bafb6a629a91f3ac5deff5f3b3d0', + 89392, + ), + }, + 'CourierPrime': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6b253e02b0f848c4d4eb43f73f4b837eeddb438f88c6a7d3c8f239bac507cc9', + 40736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c43a3f1c17774bdb0a32f272dd5b377222d47e2afe7c7002155cb90a2afcc24a', + 47024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa7526c553f7a7f794406a2287304dc5858d650c0da2f2ff5a3a6084cedb8f8e', + 42284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '376086bd628084f3693074ef26eda038e329756c6fd64724fe628742b3405927', + 47468, + ), + }, + 'Cousine': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61e63301fbd450ae3f676d08d4a39db8cd7f6429228059d91a54ef5cfa301e81', + 184164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6de5bb27b76b4b29eb42d2ea03df4acd247c44412587c0dcac88af24d807c9af', + 192900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd86d125d0156720f2d7aef7937c0890fcd1a4e7fc29fdf338ed961eb34786ad', + 183872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8f58007ae958dd130181ed73cd8e9e683443b15c9cff60f3cb5213a1c5b18792', + 191964, + ), + }, + 'Coustard': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67575a82a40a58c845471e3e26079ac8f8fc5cfcd7d16a467b10227501cf914b', + 38344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f151e71b6c5e90b673c5da04350cddf1fe84f0efc6f4300fe022c3c686856f0', + 40932, + ), + }, + 'CoveredByYourGrace': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2b2fe59bd1539a14776673d1475c81a6fdd54a5185e480719146c9fe57d3ac2', + 39604, + ), + }, + 'CraftyGirls': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d11cfb5cb4048cd1d628c1abb25273443443348f154c2e58b1969395366076a', + 60096, + ), + }, + 'Creepster': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4c59544eb7330e9331c480843fe735f153ee32ad4f630e293d882c81294744c', + 60620, + ), + }, + 'CreteRound': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '141fb6fcffd6837676f741b63f118b65d4f54f13c59249b52003a503e2e1f55a', + 55244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9b60518b55e987f13de9687eda994db5536551ee60ed77f4926b035896ffdac9', + 63116, + ), + }, + 'CrimsonPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a6cbaa6d4d6c0106a8c43ceafb49a58f455d41d09d30f0772da47796569bc4c', + 97136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e98504e6c03bd9a6006585576ac11d8b1ba32cc1a19c0a731e7f487c2e84314', + 97200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74bd6198afceebd974d267230042faefa255f97c71cb4410c0eacb545e433d92', + 97140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ce4928b614adb65e8f1e8b7d79a71a99fd5f96a1d316fd5661881a7e5701a3f', + 97252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08729ce8cebdcf73bbf989dda05a026579eb7fe2201741090095b0d464f4cf1e', + 97864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b9be4283cb41a1432ce12162261a0ab5b982e760f3fd2427c47b61989279d3e', + 97780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12cfdf7c940f1fa8665412f7932c70032063e8cc0280cef9a2c914c04729afa8', + 98688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bac48f821b9b1635c709a213f9bbe52b3846c1ab35515970ca282adf2379cbcf', + 98688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '68c35df80a4e9c8bfe1f4566ca6fd9a0a556a28cb4a2e35f8d62cc47a253785b', + 99176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '24f9a4b24a8db4f1679f4572c0810d4d5da13e7cc14550189d587d41dafe2b5d', + 99140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00595e2793d0e82983980ae5707c6915d07d33d9c55e740bd50fe740f86b6e78', + 98948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5777b1431cdce5ab5f504a6021b30061d2fa49275963746df0131897cc55d362', + 99020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0bee6b98d8b3a055db530c9c08433983d469de0bec9069d6c33897a5ceb20a42', + 99584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eea41e17b92c0c855f42f53ae3f58e5a9d6762bbe8b843cc4ae955b4a64cb688', + 99528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cb748b54997b97e724b5c1c3f904e9d7d3352e5b01b18e5fdb00a9f090c1ada3', + 100544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a24fca49957a40983470c8c9b5be67612f9c7c503612311e3a0b32b11e1a8d14', + 100600, + ), + }, + 'CrimsonText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72cb26f7c1b23386474070900c55abd2018f9ea59dde059487189c0925a08253', + 73596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '205b67f39e5a57f53bece9bb67bf649cced8bda2cad53fe992edbefeca8b6606', + 73992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1050dd76cf0efc5d56f724d78a3b9a4c8a7c5c697d6137013eedb2112c726fd6', + 73616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3dc40486da6eb53a12c1917030b0bb3a4912dc188499eb5989818f11141f8ac5', + 71944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '13ce1fca3c0d0c2bf81f0907c0cc62032ba5cfb6f73f571515f3de2e75c1e853', + 72944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '41fb55252a43c03a78dfd2ea10bb953c9827870eead6927e0fedeeb745ebcb56', + 74276, + ), + }, + 'CroissantOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ac973a0bf344751c15a02098ef8e52829b58706a0d77d7505fa24519a9b3f9d', + 49048, + ), + }, + 'Crushed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17854655827bda3efc206fd199b2e597b9d0eec574cc6049070db4aae8b74ce1', + 42272, + ), + }, + 'Cuprum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08a33b15c2299b722898ab65f2bff951e806e24ca4438d585075072f713697fb', + 55052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '742964832be6c26d2612347386d12f6b46e73df8ba3aa4f7da6fa78afd253756', + 55180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72af47de99c4dfaf035514b71f0c3a70453743d37e2cafbbec973d7b12df26c0', + 55180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc106c77a3d56d2393e482e9cde593c8a133c16ea0d757e74100138b26c8cb83', + 54972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0fbeb7d45f2a814593850951b2b396f25c1440d15609efee2fa70b92ea361342', + 55352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '95736dc62cc0556f174b9573ee1134b21710828e9ac1a50e54d70c1d1ad06d74', + 55536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4e385380d84d29441f33494ef3f5ca50f254330db5db056061f251f06b6707c', + 55524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '08d376f3a90faae08b3f4f94abf49e575b77a666618d31c10b368feebc1bf3da', + 55340, + ), + }, + 'CuteFont': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db1bf5320a4a51075424d70ddfdecb4223efc31ed24b2dfce34aa1ab3369d843', + 598520, + ), + }, + 'Cutive': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00538f7625533f2449b6c1f0a705af04aed7088eab512f6b5d40896f40fa6953', + 46364, + ), + }, + 'CutiveMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20c0220ef9ccb50de02353bd22e239da29a7837b3a1953abc354a10d94b290cc', + 45212, + ), + }, + 'DMMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f78f8eb807eb1a9e5a9ef621bafe640ebe2d656644285928cd01fe6508e58210', + 28092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e325772ac9f8d65de3ecf1027a28b68d9259f2a339df6f8e8212e8c8e61d7524', + 29252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7fa2fa1eeb2adde914c80451daae27bb40b6e27024c156acb93a1d90276c00c', + 28128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c5a46e29601fa21da701f3386a5561a12f720059a608fd8a72c54fdbf18dc57', + 29264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6aa912b3cf146e7e3b59687a79b2ba4b1e693df414ba27bb7e930ddf89cefb0', + 27964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8b928463157f8362a03536f32707f492b658bbe78178a6a1898bbe33270bb09b', + 29284, + ), + }, + 'DMSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '601d4173f0ce21def027f8547233b19275fc02ebc2def734d7998a1b6077ba7e', + 48268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '770e95cab060180400fd6f3a36c073275fa857d7cd458cccf986dff53c8278dc', + 48332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef0f52c210933e60e25b78ddce88f187ce7e3fc4eb237fa8c387ec8f95d58c34', + 48272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fd5773a637cb4a7c36839eeca3106dcd1a8d92b138d1652e60fd4b2e31f74ab', + 48256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e9fd260f8833152c4b6066527d1b9591e1afb50a341a2eac825c9b4d29ba414', + 48284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab86961acdc191ac6c41bea55b4a5dbc4b2930918bfdbe8150a813c03aa59529', + 48256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37e0c64412c4bc4238d29a8f2efe99d52201747f206a3600f36cd228b1168f55', + 48176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8fdc879a693658a3b8d9fa63a066e1c744a3b7ef3aedb32cf8a15ba89281c574', + 48248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '295f40a12bf52afc79cb43e681dc0d3c9bd2237892a588f7ff538161e4bde2e1', + 48272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d80ca4aa8ef3d2c0ae6c757f85a692a047f92215c3d62628b0643bc5870d69e', + 51228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0e7b71bfec4a5a22672f5b608a3e284be7d985b080ff420164259cb674d5fb48', + 51292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2a09a525e9844b8b95687989ed80ea58aa8513a6f0ead10059397b6902c42e7f', + 51240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8eba278be309d122c8408c17fc776294ad3ab4bc3b2bafb1f9f247516d764696', + 51120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0c172a4900aa8f45009e3940dfa69c4f85818d2c6e4621a5efad4645df02c1b5', + 51260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '94b43d97d2c773accdc05c44d58ea89b582a2879363d778f00316ed9d684a055', + 51132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dd30e2b3372624e4c4fe87c3f4b34082bfddf814d2d1d6495fafd595378d9247', + 51104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '22de53dfbb1e183e87c7f0918f92d097caa4412465d9357ac9c77728e9c030d8', + 51212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2cf10416200d5edaaa17b14fbfd62ada8db60386c6fab553847d9e9c7dd45564', + 51124, + ), + }, + 'DMSerifDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '173866b37d289a30ec54555d1ea0735bb0c09f17cdb63ec1fdbf5c484213f3ce', + 52636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3bd13a4c862b21bace2469f88815b79a50940d63aa5fb0ac4a446e96f4128156', + 50600, + ), + }, + 'DMSerifText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50e4eab98e07de8c76adf68c58df4e5f530f2ed3e01ef53b672dd15cfaa3aaff', + 52684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bb036148476a0f895353d63995db44eb325f13b95e0dad89c7939120fb537b40', + 50412, + ), + }, + 'DaiBannaSIL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8b58049c437bd3288ffcc7a67ac4124ee6dc044bae772e4457a650c7ae776b8', + 51996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e089802eb4875f1b79aa372bfca86fd4d3140bafef71c59b20d625e9cbd511cb', + 55384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44dbdd8e54d7e22f6aeec2b0e7aced4aa78268a03028e18a555ffe68f139f109', + 51720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c53ef31d81830b0a03c5e0b5fa44708cf0b880fbe02547b3dfd9c47178095b2', + 55300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f13a00387309caf2cab0a34b7aaea1b206cb7a21d922a20fb0ff5efb5ff2e67f', + 51776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a0b57fc5c0542ca292e3b4915925f60f6e5806088093f57179a52cb8e1d5d067', + 55568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dae227f92d1dc91caa3b1367cb334dc7b94ff2b4d9886bdf61b9fbe50e884a12', + 52172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5616fd01531158a3aa11e2979892afaedd3dd1b47a62642335b13d9197c4292', + 55984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80ddb3b55a5f36b120e41645c94e49c1f8c0efb29f03a00d51c8d0e951f1500b', + 53064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'da0ec4eeac5f684b8a7e9d648092b4b3042b12db53e19685ea5c001ae97e9b41', + 56796, + ), + }, + 'Damion': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43ff1e31fc30f9d564501308bced7195bfebe887c19c906e54757c44e3a25c4c', + 43684, + ), + }, + 'DancingScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14e256280323ac39486a22d4a7cd6f5a737772ea4a7ec3052ee4ac463b71c4aa', + 76316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dda703227cc2f5d3f56dc1c9ec3c37e4d4b026d24f2b6e44bf5b8cfa4b559020', + 76648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97d2263b9b1d7efddb6f49f40c0b2a7a7295320e8ebe57a4d3dca77540c75efa', + 76640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a34e8870af44a503c21ab233077f9f516b1588cfe364192ba084b41e1d0ca3a', + 76572, + ), + }, + 'Danfo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9880f0941241e50b3549c74a52f980035098400920b80080dc166ea2bb4962d', + 91612, + ), + }, + 'Dangrek': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69a0c9e60b6dd9801a97085e57a28499d4d943dc507570c2a6d00cf776a9f585', + 38976, + ), + }, + 'DarkerGrotesque': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7385513241adfab3ca3b6a782ebe446cdc1dbfbb3d87d17291737f3bf35cd48', + 47640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a33e814f471679a2e069248a8a0547f3f523b780a2a3d549dbad9060e54060ce', + 47752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe120b4c9c01d08bc7e4051691f9fb57c1b51c82c1003eb1ab8b401f141f0420', + 47720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8af872193b12d3df926dc6c268c47d2d08ce4f2ec5e9ce60acf84d1bb4b940e', + 47744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '456587f6196fa56d2455b93491e0daf50ad39badd4ccdc31252b56ab6ca2eaed', + 47724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1159e5bfa3667ca69ac24e93d7e000f6e5c0e11fc31dd7546d73c80169e7e1f6', + 47688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df4b4548dfd4c31204d3c0ded418e4ea38365c4ba9f18d2902434c7813775512', + 47440, + ), + }, + 'DarumadropOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '570b43588bf4d733c28f7a0e7d7f1feeb34a4575e239116740b7c525442a3118', + 358396, + ), + }, + 'DavidLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2df04217a0154d864691fda10b2dd01ea5f9cb8d6ed7c41a69499e0e249c085b', + 94980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00320e4830c0659fc0ffe09eb67ffcb55823c59c14b6f156f7c3680d4e3029bb', + 94932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5f6a17d8857641c6238defc4c90ee8fc8292a26ba1289af361e68a4217ae824', + 96216, + ), + }, + 'DawningofaNewDay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0f9c4b9a3b73d432a325f5657aa22dd916e63c7413f3a8eea76c0718a4b1365', + 50148, + ), + }, + 'DaysOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60c8abff15c01850db03787e4a79911e91bf26450ddc62ccda0953054bcd9453', + 62724, + ), + }, + 'Dekko': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fe7053f1df1669d3e0154c87a06fd24b4b7eb49155168d85dc73df94fb5617f', + 144308, + ), + }, + 'DelaGothicOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca21b702c5c8a96a3431bd7b7496c315b8808939cd986072230e4167da1b4dbf', + 2477372, + ), + }, + 'DeliciousHandrawn': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '080c72237d628e623df22b554e21e51a66a1e843e3f3aeec8f154e22e3fdaaab', + 61064, + ), + }, + 'Delius': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd71a681bf201c3e2e4075c6da5728d4daa820addcf1605687458820d2f8bee8b', + 58256, + ), + }, + 'DeliusSwashCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6367e7d176347cd4cd7eefee03f80af10a3e4325b04cfa08c84121d6720ffa75', + 60040, + ), + }, + 'DeliusUnicase': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36a2a1b2c70cadfb729f3457ec1d9c4141222533e167b8620b929340d6fd70c6', + 31020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '419648b741308df1323d518eea0385675205b268f8b793c8b560e5c6366b9906', + 34376, + ), + }, + 'DellaRespira': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2680566048569a284fa0dabe684604b64700db4034d2b9cb1d8f618eb8f4c0f8', + 48188, + ), + }, + 'DenkOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bc35927fde8ed0ad85b24a84f02cf67ce481cec4e09fbe4c719b59868df02d3', + 273520, + ), + }, + 'Devonshire': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '010b72e1a4a538d1cd0f5cc3102047f9ea65c50b6349a2f811b3bd800ffe5512', + 64116, + ), + }, + 'Dhurjati': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7bab2399e158e07a85421075188050d4d87a5689e43225c10021730543793b19', + 534564, + ), + }, + 'DidactGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84399f52701c9c84b662cc9e1fd84306753a5c127af35c8acec6f6db6f9adde4', + 117800, + ), + }, + 'Diphylleia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee975956756dab744591ff9874f20d37aeb025d1bbb779baea14c89c8e8c0e54', + 1408048, + ), + }, + 'Diplomata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '318dfe24572b32a1ac3cceffe52c112cb975bec55719e33cf7dba367cfd98c29', + 52556, + ), + }, + 'DiplomataSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fb534d49f73e12ea2e1d32c032ae91bd4864d0ad75f9bf66d61a28701b16559', + 51392, + ), + }, + 'DoHyeon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ec876604847361fcae0238e891d64c09d7b9f2c67502f15d5d5250bd3a12bde', + 408436, + ), + }, + 'Dokdo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd07c17d9103584b546ec45e876d54645c5b10ada0b20b27381cb96948794772d', + 1385692, + ), + }, + 'Domine': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de17832296fee8b2e5e67b3dd7fd194429cb923d43fb424682bec8cec7abf8f9', + 64444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70a441fbb4bf22c08010f4307ab2d83567e4c3a7e2ef824c1ae2f9c7569d656b', + 64616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ed27c74e389223b981af88ec9417da3a19a0134cfa03674f3eb1e7c37145422', + 64584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '443c1ace7e1603f7103c757cae8af974a73ebca4cc9160ce04fd264bac4657fd', + 64528, + ), + }, + 'DonegalOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b15d824bb9e23c5dd2c4a795f2207f17ec2fc78f294dcb0c445b6dc2b0be9e2d', + 41384, + ), + }, + 'Dongle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b701ab19fa1037f707d2b1d13a5840fc6d5ee7f244d87092c345570741c40f6', + 4386532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6154bec33ca01ed289d06beab822f8e2aac8215f04c443f5e1db548b9c8a8f13', + 4456124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29203d87814c6ed28d66b039f04efa1493d101c39405097d2f225b3025ddbfbc', + 4474064, + ), + }, + 'DoppioOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2d64dab2e40a394b2cb50c92d8aabf683bf01d9f484ed299f020e3822e035c9', + 33248, + ), + }, + 'Dorsa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fbb563ecf470cba0de50596a20910770ce04ae2cdea0018acf0cf456d915353', + 19104, + ), + }, + 'Dosis': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cedc2c96e525bcdde27abc497b27e15fe4e348b24095e677243cdaa884550f5', + 69040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e2bb016a3ce0caa5dba97fd40059a22dd43eafb9ac711e1bca76b06be7d16a7', + 69196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93e1d2fd26b3f24d102685c2d41fb24d2feef344c9bfcc8c122d40ee7175a6c5', + 69300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '548ccae4f77b75dd4e147bfa77d7e89956974ad18e5617d2a70567564acd6efe', + 69216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0323cf2f4b0d5d4e0522aadd311ff170b277461ffbc473e0bf445895f8f7647', + 69244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53e5fe3233ff4a5da3c09d00245bda9ad5252dec5f3e16e9ef2204d8510e85d4', + 69152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ef5e8ebac073b312ce0bf5e4ab6a6dfe2c48be43aaebe72b68b94bdeb13968e', + 69148, + ), + }, + 'DotGothic16': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2c051a7964f18ab7e68c877ef6b8411a1678076e40bed072d89d4ac0eb187ec', + 1903948, + ), + }, + 'Doto': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1f0e57e7e78ce323191743af34d915debb37cdec44d485ad837c76fb89f3397', + 140480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25264ebd1212b3b4dfd4dd05049e4d2a2c0e1ffe4b59672ce7cb33b4e8f3f6c8', + 140528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8cf398c157d3483ad3e1a6c51fee1b4a6088e333d024f0b2b91d4a8b3472570', + 140488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '541c536738c8511a6f7c386c4e3f1b4bfb3377540c567f9ca7a8c28768b5f59b', + 140308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2af2d22f7b11e2e9e5adc6469bd9e1300c68c1d3f7140af5225927d9f5f678e', + 140524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '627fe4ed3a6b965ab58fc002915f4e01fff06d0ab4a4d67d1febaf6fe2e47bb5', + 140540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1dbe0f14c769513e4a710839dc725502e02f8f1dfa17d3e0b17fb946c5a67de', + 140472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bfedacffcf13c566afa4426768340cbb8cb20b0d8f9a7b3bb0be740b02c7412', + 140548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6007270519def1279aa98841012de8d7692f173c37608124ffc59a504457f6f', + 140504, + ), + }, + 'DrSugiyama': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fb2979359fa0db24d07995444bc13f3efd562f3b8740b8f365c25acb1cb2424', + 38004, + ), + }, + 'DuruSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '626d4fd7f859fbfa0ba5a8db35e636bf031dcd3542141a0496026b90e2b9d2cc', + 47188, + ), + }, + 'DynaPuff': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fa157016010920e1cf77a10fdab3595c7b8ba674db979db8f9dbc38d89ee8d7', + 87836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb473d95ef401024c7f163c50e8cb78031d9cf03e3956a0bfb028f1193dae73a', + 87932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c46ad000f9eac33afc4c9557d4a83fe2908a0b44f120b4a1487c540d02555c01', + 87956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '341902e788f04267b51b9b87a52fddc2f553ac2a007e79d875f30e97993e15a4', + 87836, + ), + }, + 'Dynalight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f3df30743a90267ad6da31bedc99aaf357e8f489097dfdf852d8bea4d6ff947', + 49760, + ), + }, + 'EBGaramond': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '819316ad1be484e76ced5b6d58682e6a476116d26e5eb236cc8615d227080ffc', + 446108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '441d45e6797db8b91d3eb0527adf96d27d4a94bc4a7025e8ba787e84dc13164d', + 448388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3712fbb28842abd7600f63b82edf012231b26e02aebaadc86fd42706483e0920', + 448656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '614975a480b637fc0008ab623b14878e5a84410f7a5dac91b5b0b22618bdc560', + 448340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cd257307200007ee0ed4637de09290035377b801330175dc4149654d0fcbcc5', + 447996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6f4a609be1f9d184b812223aa9bbf09a3c94d1ddd9e9ff7d48245814b7653d3e', + 375212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '19657d7a0e0c1c0a0f0f8ddc1f40698ac9cb17c2632a7fb379afca99a8e33621', + 377632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '751b898dff841a62d7923143586187f807b10a9e055c5839bd5e785ae9546adb', + 378252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '885d91253e5f97056bc213bc4977b30321735b0e4bb302be9c54cc9598e01b12', + 378072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b92573b981faaea36aef8a38ff086901f9964bcdec19c15d2b8d07f0523d011a', + 377364, + ), + }, + 'EagleLake': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b858283e2e07d0e92bc56f64ebe091dc033af33de771cc010e2b533008a0dd4', + 75472, + ), + }, + 'EastSeaDokdo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48e1272cecdde224dd5f109ba1bde3b5de7554ab0442b0e9683213acde02b410', + 3175636, + ), + }, + 'Eater': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19fcfc23e45110c82c2f38020fd194ad2169fad9e64d62bf5b843efea45bf882', + 82152, + ), + }, + 'Economica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c24ce23ab6599b28e3b0cc9e9ae30458d216cd9bc6c7cb916aad9d9d0ac0d8e6', + 24816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '931fb29df0380d5ece2163387988b13c7b43655686a49efb14a5438fc1d2d535', + 25764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9aa41b839712b5e1731268dc5b45b5cf8e088a4c0af363b219a5141a285918a3', + 25252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3a80a4adf7226a3c563bb2ff49ea5352101462206280ba393c8dc456f7d547f2', + 25060, + ), + }, + 'Eczar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7603b97c84791cc5fc8f36f8fa2242d19adac05e2e0ee546f1494c32c59abcc1', + 248300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1af9b435d3afb1304bd26da4548f732f8fc309a6792f117f06135526d6182894', + 248968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea96db43fdf4117d4688e416c244c4ef407e100c658e6f3a66c676cad06e0768', + 249008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d72473e0b5ca446d68887abe04b8c988401cb7ac32c23bc9970a2ef6dcccbab', + 253556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03b80d7d97d25ef3470d7917a79f5eee651efad87a2bb62189a64bf657a2c998', + 253844, + ), + }, + 'EduAUVICWANTArrows': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '368efa1032227af58a998555bbddbdd7d2f04f9ee19a3b66d30dd71a0f167f27', + 37320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de84efa929894d860eba4682a50c5142ccb024da5c38e75ad0d376f7fdafb07a', + 37408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cff3c6a20c9f95289c8889993847dbba81947dc4b199d04288ba82fff198799a', + 37392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a2bd757a5121902e431412a09d91b739823c6dff5229de2f6e12c7e411f6665', + 37284, + ), + }, + 'EduAUVICWANTDots': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '310b191fb3789e3a605a783f2e0dca32de55c5dc854f02089554d57c064a1e5c', + 85072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0edbe29af681bef9e4851c77bd161a4e8a5037f36b6a19412fb1debcda38159', + 85284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2509f48f8f3d5a5ea4b00b42bae4f0b9f91c789b85373ae7886cbcfdaa09bf3b', + 85320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7baf839267e2911dca6cc99762eec334aa43dd967ab9ec569b2a62144820381d', + 85260, + ), + }, + 'EduAUVICWANTGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c50edf7af40524b96090ecc8af700fe8fbe0ce630542624f8d3a8b4ccb944cf', + 283148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '215b4d38461c430903576e982ac728ef786cb8f347132975bf103b837e886f35', + 283416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e232fb3d436e2157133a005cf55cb74252192a1f05e4e052063874f43b51649b', + 283052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c76e79eb5417dc31a5a2b7518964272d839d969fa75237f98ad4105087046f5', + 282700, + ), + }, + 'EduAUVICWANTHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51999db0d64452b52d46a2088f3c3f00747dbbf6189e1fa9fbc54f3551a4de5d', + 189236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b028a1c11852f19aa8ff7355fef9bb369d95d3236dbc1fa10cfe028088d7f9c', + 189316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e40602b7fddf78df5efb8ccbc709b4edce2514fb72396b81211ef521118fa156', + 189284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb258821054ee40ab44702bfcfb8679eab02e676cfb2e7873224418474e78bbc', + 189024, + ), + }, + 'EduAUVICWANTPre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a79e65cf2fdd42a09413331c0e2323159fb222162ee5ef7fda5e29fb61ec270e', + 218968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9030bd9c725a370b22c0d894d694f076ae2b8b7d30f227e0aac2b74351da363c', + 219004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a31aae09dd72b744d8228f785e12fa9123233626783225db348e8c10cd935b4', + 218952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3844a76874f92976e3e14f33c732c5b6ffa2d1e1de49701e4f7b14440d8eb35e', + 218716, + ), + }, + 'EduNSWACTCursive': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '851a973658cba4a59545fc98453580671b80f567c13fcc4b4e14ca9ed7ebaee1', + 192052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a29e86ac783793c0ca8c0af5e52bd0efcff0a211558b8540282f09aae541c564', + 192276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '614b58ae1e1e8e340963d94d5112a9dd7b489d279e8b4a90e8f232c445df44ff', + 192208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cacb5f35c09da6cc935e575eca9927de7d28cf7fadead6db2b606d7ad8ef09b3', + 191900, + ), + }, + 'EduNSWACTFoundation': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9adbadb966553144977a08f7d22f4b16d453bf343851ffc12b1e10592cc1d19', + 21208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9dc4601aad1c3e300d82d6ac42ebfb80a53a921c9bf539ffcf05f327cb74df21', + 21432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '675bf2eaf1b52a7c91e6eb1b3c4c3f833d9986dbb9993048d325640834631595', + 21464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc8ced309338e5f1e93f14b87c79e8df790b54938fc5426d35db0511c523caac', + 21384, + ), + }, + 'EduNSWACTHandPre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff2f2c77583fda937e17daec72c4ee7202305de549c9e9fb11c5a397afda7f12', + 122908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6a1fb120225232f724fc82feeaba864b900a1719b8a636934737e3ca88ffd12', + 123112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e88f550e2c42665ccfd75394706a8d6e7108f412a5f6936012e587a901c3a200', + 123052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a92da6f194a39c42509b5d387663c47574110c5cc5ced95b6942d341a24f622a', + 122964, + ), + }, + 'EduQLDBeginner': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b985339fa85b3ce7fc364d04dc91df7353f6fb5753707bd6187d0d40b7718cc', + 21300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c4246680d438a7aaa6c015a8217118ad7a5baf2e79aee9ecb1b53c6604b951e', + 21424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8d939f752a07818c8e8b260750ae1652157c5f34006ee4a2e3974fae984786f', + 21428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '117c1b9d0f7456c488a2e88859c8f30ab4f46f58bec45ffc6824389ad1183748', + 21256, + ), + }, + 'EduQLDHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33d6aa2ab8f32ca740e6a5a0f754bb40ef975e2e740e5656db5f518fd63ceb31', + 153024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af96ebdcde49b650a4b22dbb2d6dfed5fec8ae8a76f07868caf0bebff6fdb21b', + 153140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01aa3d777e35a83aedbf2a340ee1d79bc4f4340e7ccdf58521df24cea990b4d5', + 153160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58701e3cfbcddbfe3fd095bdbc094330f85c3d6a3a3c2e45f58776313e01ee04', + 152772, + ), + }, + 'EduSABeginner': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4195f037ad3de44a106b5160fdda5f9242989fdfbe7badec1b8a2e65fa0522bb', + 19820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1306ad23ae9395defabde5fd0d8b58085f78c4cc6323d7d450b94c3cde5adef', + 19852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '323c834b9beb9ffa6189bf7558b907e591bd607b7bc82f3127ad14cde28e2380', + 19860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9430c9a49aa49b3de3896d199edb664965a2e4799b57ba7a3f9d6ef5421f939', + 19780, + ), + }, + 'EduSAHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1411e4158b8618ca1e1fa136042297075e1cbf5615882c245cee5c5846d0671', + 140420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fbf9dfd8f6818d8545dcc231403e802ddb0a841521c224ee86072c078966042', + 140992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7621899371759c2dd5c0e6403e64f0aa4a24d4bd545170067f74cb68e22f66d', + 140864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4c8fe02d5acc84423f86d57b38fa150bbeee20d3ec7ecc70bf6b9a39ce9fb96', + 140708, + ), + }, + 'EduTASBeginner': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d1d5ba124b10b56e9721a80854dccf76726df4a9485e78747393bb91afebdff', + 20116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48e6eef20df87296de41e6570d2f4194a45b28c33f1993b73e1ba1954cad1966', + 20140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd461ba5d1828d59017c3810c619ae862314dc6a79df816bb548a8005ebcdc98c', + 20144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4ee286213a0896b2885e48225b4817417317f174e068fe88871eaa025c6116d', + 20056, + ), + }, + 'EduVICWANTBeginner': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba8ec1690b2af4728f6929a23045cf8b5b0ed1ecf6b34b3f9396e161cb97fb39', + 20196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50e772d521cae7903acd5618fbcccad0769948a2ea45bdeddf26d9f9157f7630', + 20272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fea82e911df2e26b16a53984171617bed8835847c0114f3fe0e630c676f64c5f', + 20272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5aef0ddc90a8a4680011870a1a1829d4ab6c2a567ae7fc94dd32787cfef29144', + 20156, + ), + }, + 'EduVICWANTHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbfb4ea35deed3bbf8554e12ba474436e3f15312c84f51c7a243744533c18d9b', + 181316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '883616c2b3df76f9eaf410382f418754dc69f1a37675efe46c2a7269ada97a44', + 185128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '249dc695d5c4e8f520611d192c48f89a063f0359c9c4cc2f5f0b9cbc4c3ace57', + 185112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55f6dfd5dea0730c81da16c9274eeca11a9b277ba97dfa2da9dd9154564d7e3d', + 184868, + ), + }, + 'EduVICWANTHandPre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c284eb017e4837228e944bf48294258405f3cc5f4566a42bd6a39d76b4c947a', + 173064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3789cb4c48de14adcc6c5499d1421723129f9f54e60f2dc4e58a80e22ed55a9d', + 190396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bd6a2827c0f3a930021c4480c3e3e42c0cc7dd6f714a50b5de032d8731b6cdc', + 190388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74de5deb601627b67e21a712196d160bbe2b90673be671d6911b71c683b9da06', + 190140, + ), + }, + 'ElMessiri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c747d528081eafb5cfdfa5dee7f521eb1600c828850a489f88373f5755e5cf3', + 83700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f0c44b6018d1e1570fd06e1e06ce1c477812c78223f93afe71b2bee1ed14ecf', + 84120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '449575d1359d88d7dce2e94e5bff400955a6ecea68f018ead7d7f07e57052291', + 84244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef419b9db7a5b440c61b931a4d7f59b74dcd7855acaf787da9c85a6c6f1fd3ea', + 83860, + ), + }, + 'Electrolize': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '061301864f942cec3206f6216be568aaee5d02f9f297633ffc8d9142da1d0b1b', + 23228, + ), + }, + 'ElmsSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28f9865d37e4bf3aff9a7bcce2531906091a48ac86c242b9ef049cab9235267d', + 92556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36bc1ca4531f2df69f5264816debcfbff3bbcc58c84027a2da8cb743e6ca1207', + 92676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7f679e28cd4fdde44362ac96448e87fa1506815ef36466bd677ac6c4f5b82ac', + 92636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5905751d375a363b74f4209b0752310cc483bd60e0d1e9f06c6412340c62f6dc', + 92752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77b5781062d34f2795d9b94798b33b583894e0da0f625d8aefad763823bfe791', + 92500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96e3a57150190d3a9a329f4a430c1c106a3c773e1b47b37f08058604618146ea', + 92600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e24c5f5d321dc3c55ac17f5e18b06afa850766ae012de266d978ec3b1840ce15', + 92572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6184128d8272d0595db7e863f2ec40ce9e0cc4f47fb807df24b2ca1c447df5a', + 92572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35592732d58b57ae9b61d4b3896608af94220648c02164c2f121394133c88455', + 92308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0cb04dc5fcc305142ac0c38156558009ba33e609065551d36d9c8def1d26b68d', + 95196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ece9b2e87047da263a8553d38c2842e8aa92b8bc16fe99d4dff7e47dfd06fc9f', + 95408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9bd624cadfc59da7ffdd2f170ebf18cf3a97a9d8248ac6a77cc32b427a140305', + 95308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd2c3ae84e4097c17f954643cb7080afb8625d3a90349fa8c481076e75185f810', + 95312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '541ea0bbcb342d49b27eb3a49ce73f0377ffb988bc3694ac86a548e0e20747b0', + 95168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4035083bdc9ec4ab63f8a28f85730c9fc12d025b7c0c648c63294cbd9e2b15e3', + 95364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'faa8daab9de95eb58e791950b95cbe535ebb6e08cf844b26427634ce7d146d1e', + 95220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f2c706d903bae5ec11b7fda2f46269234ea5c4be6fc7277ae6f67ba770a5fea', + 95208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e858340de7eed67714fab471869f629edf90eeb2673cfc9f8f894eecfc79b6e0', + 94860, + ), + }, + 'Elsie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fb309aabca6cfccee5f7d6f98c5af435d1e41461f5268d3a09b0d1ddfad5104', + 34260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b55c736bb96753da69b0608cda78127720d486287ff7222d161559a8e7ece2bc', + 35008, + ), + }, + 'ElsieSwashCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7bc1b06fa9a799ffb0c6a69b0d860b03d61783e535fc3c66b97a9be9cc8365a', + 35956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9c93d2befdb49aa4d140260f06b38dcc48d6cda6ffcf0e0510fcb60666af9f4', + 36248, + ), + }, + 'EmblemaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f0ab383185d3ff8c8543ef19d0a51e4ee82e53b2c4adf057932530b4f6337ea', + 56204, + ), + }, + 'EmilysCandy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '345aa4c6d86de050ba87f4721f42ca6edf7788f833fb8b74872c98341c9d0daa', + 234812, + ), + }, + 'EncodeSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '593bd859563049ea0fd41b856d7df124f1fd341bb88c5bae28a28d8ca387654a', + 79600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26559aaedc7f12692d5283193216508e4311352135b94e71c8a0e2add84d941f', + 80016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd886d82c8687892df2f81f66fd341da592d79a86889fedd2dff30a41da6d876', + 80120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a0ef428db7cd1b279c7030e9287219cfd26b920bc38e25378666b2ea868ac4d', + 80148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4711b9d604452ef662e2ed66805413575afff186eb023d3c05ab6c17430ae9d1', + 80228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67e28663b630a7af0b5885f46138dc160833c6841faf416dfd05377e1bdcd3bb', + 80356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2810268519f662aa7d7d72a36e93b6d5f686bfd74084ca55efcc30cc15069564', + 80612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c4d46d721ff452142ee0af9acc2d6ea419ac56bc108238335585c13382129ff', + 80856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3484e50615e64bfa8a26d96bf16af8359b711fa6fdfb70671e3b358fc5f05f3', + 80536, + ), + }, + 'EncodeSansSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c15235393626a105a8ff434808248b66f70953b3b6817ed36f68808c0b767c7', + 69016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62146ce6dadae031df4f701faad0e1748f93a15363579083a4fdd8d78241d94f', + 69256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '630e858a228072486fba8a8959f804b4fe43e9195878f451bfa6354bfde16a58', + 69412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a6c8511eeca9c2647a829cd0a3516b636dcf3ecf39e7dabcb1ea1fd9dc6a44b', + 69464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7f3b8650dc941e2b04c2845157add426f3621f859f1ac0dab4e88e05a499d98', + 69532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa791a6ba4be81687d72399e03a188552ec8d63e9d7a0668ca9971fbde153e87', + 69652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5257334364c692fd08fb1761ae899cda71ff9a7944e3a3fd21bd00dd8010e952', + 69876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c28a088f411a8001bf937443667b37a5dde605b11645e7a3199a8b2194fb3d6', + 70028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b91e92af806ffc725c20298b7b2347d33269bb933281237dbc395130bd6faaac', + 69700, + ), + }, + 'Engagement': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '062895711bee7ca63df3999cf6656f0ab2435ba2091861d21428c1b523c2d83c', + 73016, + ), + }, + 'Englebert': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b99bd9a3c0cb8c3269e1baa39272ee558ed85d8d33a9c6758c8eafbc7384417e', + 50364, + ), + }, + 'Enriqueta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd59330d9c96aa069b90490144f87a4cbd86b9f7582c8b608496079677ace5d4f', + 44208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29cad851380e87ae5cfa89cb89baf448deb370019578b8aaf545d9afb14f3c1d', + 44756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b617763f1befbc323dc09a9fd99bf68446559f2f5bf279992a434077bf65accc', + 44388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76ad0e836b4b0488c70626d284e87d21effe7c34db0f5b17e51ec60a80809bbe', + 44560, + ), + }, + 'Ephesis': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdc13432973d3a32b0e1da337c4f6fd4e85286347d0edf2754e2ea60c88293f6', + 89276, + ), + }, + 'Epilogue': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6a1db9d5dea2c50e0e52ac22b72a41fc633cec91e4567d139b9cbae5b2e2a74', + 69580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f9366cd113955b318a9641864a1a9f8a70322386872ca11f0a7c2ab509d6f0d', + 69700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64e6aa2690633294ac1f5766abf62915118803040cbed0f1e0908b2710193faf', + 69696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '122e8a519c22307205dd45d80d1ade21fa027ec721fdf56fc0b8ebc0772d78db', + 69720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a10722f2b52a921c50fd5265311062864c3119800ae76bb8612c00dcb1e1064', + 69828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d6a67fd00040e808a78d32f6134b72e974e2a1499928ed69e501b96a21cf2f1', + 70020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7139af35e1cbfc7c4548ea0a454d4bfb8f4bff0b3393fd35612040675a62d25', + 69944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '726efd941d46ba456acf047c5d5f7c7802a0cceadb946e6c58618c25fff216e2', + 70128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66c68c28b53232a548a9c11326307f8ad6bbf5f97ea1e6b47d1c52faeba063f3', + 70132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2a86af59e662f872f3066cd031faf20f9be52eace1ecc6fae82d320aa2c4ce80', + 69960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '40d30bbaa5a5dee26d89be565d195fc574cd045522a6be415db3262c50049ee9', + 70068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fff9ee6aa7b6efa80b57f8e8e9a40abb137caa6d940177d60e878adef8a68cd6', + 69988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a958ae589f5de99f46e7a85f9dee695176543c20388c51fc15005692583efa8', + 69856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8d4ca20a3887d426e0869c1a1abd0193dd5d779d9e41e00f27b18fdd0506e2cb', + 70052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '701cc1995666182536473278fbb5e293c48783f7b3e98147c4ad0f682c85785a', + 70128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d75e57b1fe7683bbd024d5442af1419cd60670dc5e84b0850d9cec0cd3142e0', + 70160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5fd384f7fbca561557f3a1f991e35ea1fedc2e7aa8c0a0a6e0a56c4e77359d5e', + 70376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1431b3af66d7dbc45d11f6e4e85da1d563a1bd20048d2ba9b2d29eacd3d3834', + 70260, + ), + }, + 'EpundaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a89f752cfe77cb1321462ad90e218575c6ceae794902e88fd120d4781ee6c3a8', + 85168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2c8ed9b6591a139398a95084b3f2082e485625fd5b812c0bf8dfa8f503262ad', + 85360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44e2a61994cbdc07a651516ec834ee80ab15dbd6c70a5726aabedb51d54e001d', + 85480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e7701ba674a462c35919606105fd62cd2a37ca6e501cea84ec9567cff32ede8', + 85484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f505f20a82ce3beda1c22bd90ac76338c7837718ee40c678d9cfa4ff5e9631e', + 85452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2266f7c196c0c35fc3288f16d22f6228ab240ec698bb27a5cb9718809a8aa12', + 85556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1046c6a119cae3f529aec58ded9cab61b7bd202c60810c117a9346e0e89393db', + 85312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aeb1221f6a02f824f356067cb1621baef305c7aa01c06ec6df391ef96b5f5879', + 86936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b60280deae893ac9e26f7d50c4a38f21f58ba062dbcae7700a311522691fbf12', + 87016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0fe41b0ab8956e83de86a6e3e231256443d130de8eadd4b65947ddc5a63bc9a7', + 87140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef70e0d94739fbffb58452ded4a5e2521948cfedba8b030d0775c44d2d07f7c8', + 87196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '40848eb21cff56bc04d3e338e7c35e26963fb60b446c7c3dcadd690cf0042b67', + 87036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '695b2bd28d9dd9de998037ffe5a606c3cc57379675d5a6a8df1d6517dcfea3f6', + 87076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd208ca202dc5a45178f65163133959d91d4d1acaab0ce488105947491d553260', + 86912, + ), + }, + 'EpundaSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac45772d90053bc864259aacff49e3afcd77432b967c72750fad4a6569e73b21', + 53020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b161c06eac11efecb70925dd563fc5e354a89e8deec2ae5f4fef15a1f1c2ebd2', + 53388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7150eddbdcdda5536c123dc5999c12fc75440f3a94a6270ab5830691767269cb', + 53528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '787f45619df6172f39b243c8e1a4fdf0861e77eb6728eef82c0d441dc21c65b0', + 53564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44a13dfabadcba64df5a0a4ae27259fbe91950e6e1e31691a1bf213fab6eb96e', + 53524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20d6bc757891811a76f92878ba22fa8f5868e554bf88347d7637f3345b980384', + 53552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9272ee3c1c62c251515d3aa0cdbb760e2c3544b8107303f49f9bec8a353dfc8', + 53404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'be68b880f6459997d5d435caae4937f32ecbb309f4b3ab4517e21ea8c1d0eed0', + 54996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a45a0c04bdeb39c0ee92b03fb8345597eac810dc81145b109a3146f1c724c443', + 55100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e8598f46fa74b6177a699447b8505550334c008484ed6d2313eac0ba369addd', + 55240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6be798223655843c8c07cebf2b03b1d8b501158d9f47138fab25a09ddabe4559', + 55220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96fc72691f36308556fd5ec2ce72b5a02fd1ac496169d318e0a410ff5a119da5', + 55188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1a9c49d9eb46e30815dd2cab30a31061a36bd60ddef494682f876c548fc7f7b', + 55184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73abbfe538fe3013fd8cf5a8dd4ef4df8e1003053d49c07a1641ed68d6c616e9', + 54992, + ), + }, + 'EricaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a624a4cacea2af9dd29569150c252c0f220c1e5d9f4cf7ec754b6f4240d25578', + 24332, + ), + }, + 'Esteban': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33469ddbf2f8b25aa9577a76ed3191c10ba359c06541da8ff214fbbb6968d6a6', + 41436, + ), + }, + 'Estonia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9ac2a48522fa4b857fcc08c3e9b65c9c064613bb38f0de44da46a96bc171bcf', + 383840, + ), + }, + 'EuphoriaScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88fa800fab0455764681712d008ac1dba9ac05747e7fd28f652934d143f205bb', + 36452, + ), + }, + 'Ewert': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da115b98d7d8742466f888773008e288c7baf8d3e0b85546f4d4427044d972cf', + 68836, + ), + }, + 'Exile': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '077048ecf66639411f9c6a5124831c417000e415848dfec24fba7a8ac0b45f31', + 53428, + ), + }, + 'Exo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2393aa7b4616864b6e3d2eba09fb69d34befc04f42f8fcff65fe2a335dff3dc8', + 58348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b7321a79b405e0dfdb383adc0c031cf41dc757940641c8afb127934f1727b65', + 58472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8fc4b9093fcad735ab5d2754241d25427ec60bccff87f371d3836af5e3d3e1cc', + 58444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ce0a625123778d4aa8563dca223c39629f44df8d7ee5cd35a3aee5836dd2edd', + 58384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2754a591bb8169ab36f5ca724ab363b198da61d215095eb6a840e30010e4e203', + 58404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf057343c00f5cf5faefe693377ffaa74f987331b0bef83a71e690fb85e9f7f2', + 58416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4413fb0b3acce3a62c738c16f6f6c94ec9a0c457730d03fb21fae50de4fc6a70', + 58292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da12d40419f364f97c86b5da3aa47b5da50681b90a81671a0bba1d586d3d7bf7', + 58328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aecfa2003e27eea521215a04dccbb3c90fe340ac2ec01b0daed985b6eb7cb115', + 58180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '133dd0abd2fa3d8d8271225f44321a7c9be4404ec7b7107271d26bda66713300', + 59676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '01af48e0e608893ce1e28e50a497a7c7f9a5016464d47797343ed7662d1f2832', + 59844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bad65f81ebe4c948d792f8fba724e2281e8063fcf0847053029ca9475493c759', + 59804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '308bc838198d1219b1c1f92db8846dde20c6ed7960505fdc78ba2f1fd7a792f9', + 59688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b4300e8762356520f3b7326581b50ada49fcd6f36431836cc64fe821413ad7a6', + 59764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5c749df9b6e250d9830d147830b2cc8bb2e71a084673810e1d9af45eee70207', + 59776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cbd07a274fddb7f9a4d8ecf69343683cbb5268ff4734f780e868579678c97158', + 59688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a09cf8de89ad6c3a562c7f49b3b4a16b1b4e66e10304b29acea0c4de4d5fd6de', + 59732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '08b57b796c862ce9a4307083d9615912a73689e26b737ba2b3a114542b3e1f23', + 59556, + ), + }, + 'Exo2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d8d77a735663175d5947e34b1e765139eadfb86ba2faec061fb3d553a402ee4', + 143492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22466c374c2d9ed3e59378571675632deddbf8f37f7c9034b571eb07fe373458', + 143720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14b5d097c2f92a99b3b04e95a288fb8479008e4f3a25187a667e48ea6159aeef', + 143780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3e3ea40f162c3d27976689da3c5a0ebc68b9f22759a207b51f2888b0044b3a4', + 143756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12fadd2254624b4642d5b1f5cbdac8545ac1b566934182e307b122ae990b98fd', + 143880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dea9b069a83717b35728f0da5504b602e42e57bca5ef8a3bf595abde3d399377', + 143892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23a3af5b8e86751dd6598038e27c2999ec6eeb6fd1708766e2761c20d36f349f', + 143872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '247fc79fc60570c66dfd279b4d86c799233a7b0ca6e6c8527407f2f0a67630b9', + 143920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b36fc0a34c5a5b85a09610b96535a2f2f3881f9b75f9ef812af45d19130a5d29', + 143732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '624981cd15874fb6b7fb35dc81e22b68c6e726a5e798f99705f865b327828863', + 143544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0aef6351a7769c05e1d12e02fa5ddb2dcb959d0ea5b8c072c337cee9868387ad', + 143808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4fc7f6ac881506cc6c6c89d43492be15a6f18211d362f5409f8da4e879a10635', + 143836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1f13cbe2a8dfc9a2c8982814718ac3156c65d4f4cdbaa04a886ba5e19362bbca', + 143716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f03088883cd4542ce846aef238ebf881094389c0081c19d8b48129f53231182c', + 143880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2b3bce52f9b67749d7b5fe2f00312afcf886a7268768724f3fb3441db57494db', + 143984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8330ee8783853d03b3c189c843f523d9294f20e4d6a73695b0214162dc9a8f7f', + 143856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8141e5b95f20c63bbb00ef6f18949b8b9bf683f4156ec7017eb7aa9176ab9176', + 143944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '520e404fcf154ca3da3bcf37d1de6df4cd76c0fa751419b1a0ee3f7d00e92327', + 143820, + ), + }, + 'ExpletusSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26c0ecb4b6b38f9d0c2e38cd56732e5e49c9fd256d800e772e67c882698410bd', + 23420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40b2998a3607525498706011b7190bc221be328c51548f79666a3b4c02f20b13', + 23456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd05bbd9a56c5881291b9382f203ed4262ea3720c345a7cd2d4eddd7a7e2639b1', + 23532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5230e5360c50465447db2c983d5197cdb30470a45bf68b3efb4bb52fba1c4780', + 23420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9318c7fe52b4f7c5bb1fa9f4abf61d65392dbad6035b27edc3f9255cb0084dca', + 24220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ecfab3f5e52b5a6ea5d033b43bf7b1dbb38132738c00af9b6f8a1f67f6dd9277', + 24400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '539896216d2dec92638e55b48bdc2173d24bbd58b8017d871fdc31b4b0b392a4', + 24432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '09cd3d513e540097e9e20ff0e8f45d5da4c1011cf24cb2ad57b3f33a85d82498', + 24280, + ), + }, + 'Explora': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8add9336376c322f6c37a4415b84ffd85366dd532c12208d308ddbb742a51346', + 124340, + ), + }, + 'FacultyGlyphic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53c3799b8fd971fc2349377abaae6d2f2d553d71c0dbbfcdc972a78d31ceb132', + 47836, + ), + }, + 'Fahkwang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92d62c44372283a0fc0fbd85cdbba5bafe068b4548f7c27b2e8d912af6d77b93', + 79544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4667c45d1dd2b282d898fa3161fbd45538aeff3f1dde231fdebc3a76bdc1f526', + 82128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '405dca72e764d0231357fc6f08a93bed14aa11e449ab8b32f637ef5fca0715dc', + 79572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4086be9efeac951f3b7ca5ef0593ff0bbb8bdb0a954f7ec32878bbdfaa26b0ba', + 82184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ac8a60e17e2b14421a8af79d61274c325714c0b8b7a683b267f2c654379c613', + 79408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a0ca8bc8a1c39d32969ce76e0f98d2173ec23fc8022dc4eadffed31b538f7dee', + 82100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e33effed893aa16b89bb045adc2c984830f7a8be68561176807a9a153f60043', + 79156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea1e9213365850f317c8ff00a0953ea51e8a34614aee68e85b22ecb2182fe94b', + 82116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e71033c6800177cefc2ff0d5c8ed39e1096a6c6ff6235e79ef64b4e4b2c1962', + 79188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e681d79686d1b2091b0305a44728372e36e246488ede2ce8f65e9ed9eaa1cf26', + 82100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c57f76a060d73e67728110214d63893a1ac7b9996958515aa34e000b17d617cf', + 79040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3745f82f607cb0864b9dfed8b0e747222a3ea28a8241a55084f35ef71a05136e', + 81992, + ), + }, + 'FamiljenGrotesk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb6fdb12dc5c3d062ae56827f803f628ed853e1bbb39b3de941baae80d08d565', + 55772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'daac097e1383917096a9bcc6032663e341012fb6939d1398e7bf3b1f48865e2d', + 56452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '506424833f8b60fe43680d91038a9be0a6b644eb9483ebdd194f843dd76e395c', + 56496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '552023bb6e9b81d161e21498d6de4815ab2bd270b84bf7aca4de763861046a87', + 56228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '529846baa6681a89ef1123ce8f3208854871e8f9f28b4bcff0bd60e9f4a6a9a0', + 57804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4f6f9c66241203fd2b553368b73d8142e27029140f4a4e5a2d2d5a7583f38da', + 58664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '777cfaaf32dc8cba286ce2cb6de6e5037d36a48fd2263d7ec87f0a5834b22c8b', + 58692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '890faf1e40c44d13ecf7309d1ca7bdca2d3e02416471c937a7b9366ae3d532b9', + 58420, + ), + }, + 'FanwoodText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1163338c27f63917e75ac691485fa3830a12f19697ae8da1c0bb18e81d5cc852', + 78696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd2b47efc9d099d8d39400d8000a925324da46622ec57472924aeada87f7a508f', + 86276, + ), + }, + 'Farro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'deba822debd1bc588376894c50c7bbbb947ee60d6dc73a6c9b6a1a4ed24edf00', + 40012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6034470d6ab1f47c97f59c2b36be9b59533acd260cedbe4adf23b8d48923f147', + 39872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '111c706bc9882189c4f855b913d3e32ad9c69316090d6d925d955168a23d8399', + 39920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb71fe917642e842c5ab9d65aa5d9e529a481af0a915478f5f93de250163e4f0', + 39336, + ), + }, + 'Farsan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38b260a621b1d96225cc2a8eadf167ef133fc6d5cc4ae9a4b40ed6c942a69007', + 241320, + ), + }, + 'Fascinate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd84504a4d3301d42591baa147c8e56fc5253b9bfc004676c48f7f05bb59393f3', + 48060, + ), + }, + 'FascinateInline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '743098a4d3bb072bbf63ccdf4b92829aab9b44dffb01ac5f363edea8137d15e5', + 55540, + ), + }, + 'FasterOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4b78d82ad0fdbe264565fe322b3e19415a0a0e952b902fd737a0b396d7dba4f', + 48940, + ), + }, + 'Fasthand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c5322dbb1195a6c5d1721cb512775ccd814fc0748e475d148affce6fbeea914', + 169044, + ), + }, + 'FaunaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4272075c11a0c0a2f2f2ac5c0aaeef69f686a8585cf8043feff384d9ab065854', + 36672, + ), + }, + 'Faustina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f465d1265162c4f7929526145b3927771c7d2e577c3b6c72326166c139cbe3b9', + 69308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afba570b82b9f48e02bd381aafeb223142a926ce192ade7bd392ace057290c61', + 69464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f10a5d2ef72a641d5a0a4f1786331f9b80acd46d75c1ddb1496a92d5ecb6f2b', + 69564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46bc922c185cf02dc7a1ad35efdaf2248faf586e91b3860afd7c57019b00bb43', + 69500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91ed5292118058a6e52e96ec11b66311fbdd2734f8f06f78e3070ee68547ed42', + 69328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56dc8671ab9d7c7e475aa245077eb482a20412dced9d37a70a6d222b47483414', + 69516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e00eadfda25c7ee97be402cf92abac604901a660955f5ab1d3da0ed4ace8179b', + 70980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd40c34ade7c7f75466e574c93298e90de11ade8168830b75085ff122292e2760', + 70808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c22e655a71d5dabdc007d88a148d606b2d51caf8be310d9d790b985dd01bdeb3', + 71000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a84c208e04a1fc8f157ce91a5a30244922fe35180688c4b6f85a7b7d87af908e', + 70968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad46dabfe6d5a5cfdf9ce387e3c0e34a87392fd736c776fb89ac2b84fac9229c', + 70836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '264167647a195ff8a2300c2375b6f3eda19b697c69aab6eaa4cbbcd0ccb6a7b7', + 70964, + ), + }, + 'Federant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '959a385543adfe511b552ae0794ccc1f2ba70936153554318a22e3d35931e9d0', + 29860, + ), + }, + 'Federo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8acc6122b9fff383a0aaf3f1afe31297b7d4557d78c8b8a31c52f160cf34cbb1', + 32460, + ), + }, + 'Felipa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffd7301be382fdb76b332ebfdc0d7d3420ff1d461385da1505b03888961ef687', + 37508, + ), + }, + 'Fenix': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8db691aebca564614e78ea83cfdb0533eb11b6d5034e422def77cc95a655d5e', + 40672, + ), + }, + 'Festive': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a31953eb8ca7e51fc7d59d6457d022eaca2aae9ef1e9f9a79655fe207649cd6e', + 422872, + ), + }, + 'Figtree': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28bc74381fd0f9889e16b05cf2de7ec9537331bbf4b978329ddbf230bf0a9932', + 35804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8423cfaccddf9a150fd350b6a4361dea3e902c1311def1c7d15214912810a6e3', + 35952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c9862af17c0db8ae2183a3aecf89da684b88a63821c965ef346a54a967715a8', + 35972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a1bba78348bd3080acd2a7c3c2939a4c02950643ec1bdc256576862399a4438', + 36192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e18bc3968e0c25eb4925188cfa3447ccd50be785f2dc014323aaf36b4cb2bd1d', + 36140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd224449eee8431551400855e096615968293207ed35834bc188ee708edda82f5', + 36212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25fa6ad43e327b6089b52f83a613fa8271a6132f6134ccfe06ec7597f6ef2e65', + 36116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7713ef3f4894976491b101d1b68c0d61750da734d8333a6fff09bb1401a860c1', + 35980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'addb6f01e97126cdd6bf91a51cedcab60cacc0e7ad5daac70e4f0a165c77c70d', + 36012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aeb1975a188aa493f614e2a9c1e1255ea0f9258792c9452dc2d07eda50dd440d', + 36136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a68fdcec17870c610f0ec400121a151a8f838aea02d302766224d1b921c52eb3', + 36404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e753ef951ef276b9fa158da8735f712f32e8187710927d9beb70b46d76177b3', + 36324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '32c2171a4475823d275a861835505521a94bfe9d8a981909980e0569ddbe232f', + 36408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '140b79a0c3ebb5a27f05e7299ed7d4c270b170a2b4246a9bb463249838885e23', + 36292, + ), + }, + 'FingerPaint': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2affb87d6ee5d46c1770682a1b4b879713e2b4d38b60dd5d1c33504e718bc7d6', + 99632, + ), + }, + 'Finlandica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cc7d5439aafca36da59ee2a648a20a9512f9a954d88305d6e813b22d87ca223', + 81184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcfb751ad05904c9ccfe7dda4795971605586ec909791a75bdb3295e1b95b0c2', + 81320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49973c91b06f7617ff28243dcc67ae68d38213e952e79b7977ecc6bad910bf72', + 81208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64a8735cbb430911886c7a56835dfd385750eda0289e2fde3f2d733580974065', + 80944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '25d6600dde62e3e6bb14dc1fb8ece72ecddc02d9ff3ba83dff7b56eb182f0254', + 85660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '687fd448bc04d57f3820866b8e3c0abb4d42de59476d0e42ebea3b609cbbfe82', + 85920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bfbc5582d7a17945dcf44417ff13a4c986547aa47ab3b5819a3608667122d915', + 85952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd134289cca826c842949208b7943ab32da90ca97ad857f0e784981a4792d11e8', + 85612, + ), + }, + 'FiraCode': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08848a192a46c8b6dc4212244525d495731d061a903c81094a7a8dd8243ab6e7', + 178924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84942fb6a90299c35212733db8e759512fede8b1f4adbcdbb69914f550994fbb', + 178724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '998579a8a6a100553a70a3be651c06dba414c486ea0e09e20ec9cd6310dbc9ed', + 178724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe1a45e527831e5e1efee81eeecc615e06bcb29b410174cb6121db4621ef78ff', + 179084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b7baec2e68e2aaaa6470af9abb4ec839f0578469088e03a9eff94628e9810bc', + 179360, + ), + }, + 'FiraMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0db8da9a33f01ce4ee70b26bc26496f0081415527f6cfeb1b78059797f217c06', + 122140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba5bce87787d33c08550298196661666b6a6d7bd2f8865720810fe29898afcbe', + 121748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '022cb543bf14a434f0d6d422a90ebb1836dea5e992b58574891311da17d21a46', + 121804, + ), + }, + 'FiraSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c302e040d34245992eb133cf08e1693b42febc2eea01e0117d13c7ae2f59f19', + 233420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '151a53f4331b8c484b1ee3152e324af7baf998c8a9ab2cf2e7a4dc91363223fa', + 245024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9d0f72d71b286f308226c2b978b5c8fee051daaff3a127c8d4412b5d0168d98', + 236064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2dbacbee625e8e70e85fc45ba18c47b81f60371d6c33b870ccb6b965b719a4d7', + 247432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a20f37112998cb904d77b51fb927dd03b49e5b49b5e156e8b80df45d02010a9', + 235784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd8050eed47cdd26324076943605187dc894ecad961b3d653211cec6558574952', + 246760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fdba08c2d2c4b4bd8c1b55cb493819eed4dad004f651b0f94fc329db9d15df8', + 235388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1fefeb817e680589e8b6ef12ad6af96789e9df3355637fd87d36a85378581276', + 246320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01488426d3c090aa18253b49e1d64e0d4a9756612d2943f08f96d7a96b964465', + 235804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1e300dc1d4601a115f848258971e2fc5cf5ced7e5ac7c19738f8ff023632a96', + 246692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66ddf8d3f1f24d5c585987960783f473d98beb07d4d07d99c909063022f8a2a6', + 235720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a9202dbb913e0d9a9c8c3445f33fd4380e407700c8acd81c0feaff698b2033f0', + 246904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5aaa26c6509238f767e1bc7399fa4f1fb1671de13741bec5257356316586b47b', + 235776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '82442dffbc9a9b6132a997e53182711adf18d5bd1c7be7469ead5e361ffd787e', + 246628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c3363ea10f6722cf026dc6598bdf2b71df9c7d0effb0b17c50b37d0ed33a3a5', + 235600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c2fb98f866484f29e535ffab89ce03b282284efbb5f9b98a0f9be33c8d59cba', + 246232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccddd95d823c849d57f9d0290560614d98f9ab13c1a3ffc1daabd5bf57053278', + 235332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1f0bc9665acb25acf4ea285775f48093079deaa5795b0fd290a9bc7cf248dbd3', + 246416, + ), + }, + 'FiraSansCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '773fefbdaf0b290748442c063b0ee12d8c3415598ccc7ebf2396538543eb9fb2', + 232912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a34c681e2cf4a14f81c7c9dec2657917568f696a39f04a89d7fe95f97438f603', + 244624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d3f72b15a03b630b7eedc2b5f4e975f2be1a986a0308db90dffd96b4694c1e1', + 235428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1d120b87da1db4662141a9e6758ffe17082814e59049b685464f5d4e218a405e', + 246880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9566a07a122b622fe5a792a257a18974b17e0ca03360e8edc6b5dcd79461157e', + 235472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e90c4a32dd1ede75a950265f7eef6d59afd2d02acd619e0ee8807a104373d3a7', + 246480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '021bf5188d8f4e1e5d4aa4cabbeaac7d6946e48ec73ce3318f7400f634481530', + 235152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0aa7211c7c002a094feb3f51a21e6ee543ded4a776e5ed5905726c7a15cd680d', + 245660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a9ece410e9b806262f2e159149779f9c1bd4d4bff737756142992552811ee0e', + 235332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b6c3da650e8b703d90ebd97a8288e6e35fcbd43d981fd774bf56ad6d405270fa', + 246512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e195c1090c29c55f8e6871e5979f3d5a7999d4b37c59b4d288be59dca5920f8', + 235032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '695d75e933f75c960cacb4718f87509718d5368fd26e4f5fd75d08d010ee19de', + 246220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c2d242e19805f8f748781a9a3e701f92b43396bbba4a5268aebf5141c41237f', + 235528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '77df1fa54e82902441bcb794835e5996f3d9231e44edcc3d19ee42569442b05f', + 246224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69289d458336bb67fbc0435fa5c80c259ed293ac818a95162bb0dd241a368852', + 235680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad6b1c33b4ed5f4705ee6c59ee810de67d05c83a4f36f9e309d47278020e53b4', + 246248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47b620617fb2e69ca8063d528d979aef75c78ae5054c8125a5138c51394e973a', + 235260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d2f97cc1ad5d1f3a16a3c47fe36688cd473d6b263a8f460e569e3908867f666', + 246064, + ), + }, + 'FiraSansExtraCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78e53246e9670bd535306548cbb8c34c710b5ed3f1ade3e51163693e6a31ec15', + 232064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e14e0e5a5728b4b02ba4209eddbc2f1b8ffb892377c454aad3080660e9bca630', + 244144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec80b703dcf485b19c19b0af7790f30f5a48897f34906e1c8b91bb1a5852d9a6', + 234416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5653fcbb84454e772dadfc0abf04279d06ee40a8d9389c9ba2a3be1fd96eed10', + 246600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b57e564a429805c7508c3795ed417e412ca1bb525700ecf7a240e95d011222a0', + 233932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '02020550df80c9519c2dc3ade3a462725cd7ae1fbcae4ee387f908cf792c8c6a', + 246100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9688c63ffcc6ae381d670382769909ac953cbafdde5c84b57ef80cea54d57732', + 234424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ca83af965fc6542c67f71ee9bac5636641826d2e382bec3aa3ccd60e8c949fc3', + 245744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce0642a53b964baf909aceec62fda6f9e5b2d5fc58b96af6fed64cbb6688cf4b', + 235120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'da678df41d8dda8732ae8e888b976959258ba03c9f89ab969385a96de636bb2b', + 246332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59c282aec275e3f9caa82a2b66878f8af5f1ae8bdd5e964b93ae9793fd24c420', + 234996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '35ff6e55401c447d3f25a47d042ad924576aef2a7a5767d98cf84bac8ebb74a5', + 246120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc627511f44e20d423aa1f24b3dfc3877294561307c1055a9f910bec85ffad7e', + 235004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00f8ef66944abaf100cc7e6df046d01f7e73853e0f3c37e5d9af2dd782347937', + 246180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ace580f18308cc74e9b74d08a9820c3e73ba2329bbad5322e90613d835a346ee', + 235008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e18a32bc51d3d367d002b485e6d7938d94dbf6f416ffc113d50ccdbc16e32dc', + 246448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '261e2a6b46bb37dae7433daecfa47b1235b89a35aeb0d7b9a152a1cea9101e53', + 235300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e3732a977ae70f1ae2f0b5485e602f6456173b125dbfff92acdc1b2fd57eec7', + 247676, + ), + }, + 'FjallaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e522b8e1afc74aaa56889fc4de5b8d82cda629a39144f7cc21b628f5fe398a83', + 178820, + ), + }, + 'FjordOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '550ab7ab944920df42f3f1093590115446009a8c3146011241f75e57ceefb052', + 48724, + ), + }, + 'Flamenco': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d2380789ac33a7d2bd6f35a95748f2fa2f1e3a5b025815ecdd10928fda41564', + 32828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ac7068687c7d236d119d124a050ae3c10cc7b0365c37f319b86220e85ae3535', + 34848, + ), + }, + 'Flavors': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3008ee81fb0a909bde35aa56f02a5b5800f2df98445aad762dff3bb1a8a21e9', + 184368, + ), + }, + 'FleurDeLeah': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '513b4de79f07aa06673bff904ffa0d7760c93664712bccd8e9209a249a7b4034', + 133672, + ), + }, + 'FlowBlock': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a921a26678ab2f89f9c27c9af2e5ef27e5e03bd41ce60fd92867391d617a2cd', + 29928, + ), + }, + 'FlowCircular': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4039133efa2a0f5126c7c60a1d66e787478bb24152a10279ebaa88fea0594d41', + 36448, + ), + }, + 'FlowRounded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7744cc5f582b3429d8fa976ee8f64e83ad2e830ef8b8b2bfe7e07847910bcd7', + 34432, + ), + }, + 'Foldit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '010c006d0b4f336528741b3feb3672a24e9f2229d0bdbfb28100d13a27297b4e', + 307152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f046ee4a8e06b82fdcea369547dbea56b87ed6bc908ae9fe6341dca7072fd72', + 310392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '299dea590e6717b15b525d615e019ceae6aaf43e87a4ee1120ecae8287b657de', + 311528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '938f7a5165666446caa6b27161eec3a8e84361fe61701bc1004c2f448eea1b91', + 312476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab373c1d338c45f9114d5826de2ed03a70962dcdee5a0762a1588da23393aff4', + 313568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21aed98227c7e7c49f033e78d127e09d7dfd5dfd7268c48b7518ca2a040b98b4', + 313936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f53bc621621415b84fd0fb298941e0691f27fe4f73d486ea9a272a36d1bee388', + 314576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10f6703afa81ec787753ed27a12126bb9269799369aec81429442277a64245a1', + 315060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2df1b0de73d625a7eb6eaff1796046daf92a672e9b0fb5903bbda3e21446c77b', + 314024, + ), + }, + 'Fondamento': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eccab6b3be5e0b95607b9eced707ae4e3b9fa4251c942e217464d1675b490cb7', + 82976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '944dfd218277e723fe28520889e339316cf8dd45622ff395f8911aa52a833b78', + 63488, + ), + }, + 'FontdinerSwanky': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98dd12039a4e64b30d6be25efbad394a4c35c9fa13ae7fb67fadae37584846dc', + 43804, + ), + }, + 'Forum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d3d28dec115a097a9f3aac1f87da71ac8a7ba6154b2ecbf390865a8b694212e', + 126504, + ), + }, + 'FragmentMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffae6ba8ba6975e38816dae562fdbdc55b004e2c0d95154472bd01b1dcbddec8', + 67088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3d976febcad697422a0fb3a748303336ce023fe24351b0479e0256705624747d', + 68888, + ), + }, + 'FrancoisOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fc2ddc64c7bf678b8cc465d4fcb31bedada6a423dbc86462f17afdb0b805748', + 52360, + ), + }, + 'FrankRuhlLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f65a735aac0c7baedd01c16890dcb58af99905548d68e059b14d917549f29f1f', + 66772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be89a289d1de2779815de0bf960c616768ec4fbdf46bbc6a7d6fbc1a0f346ba7', + 66908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1718d1d3e91590787a6329e5ecad9eb32ae175dace2997c411b064e5860ff39', + 66800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7004c0f5b6ca037b018c90d5c003a594a8fafd1a79496a9a86aab660a4e385d', + 66944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b715746150377c2393e04fe3ac087b67ee0ea3d60bb7a2bac54123d21a199dc7', + 66976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a3cde09f3f643b8e3b4a4bfbb7d32aba950a0756b311dd56996d731d073e1a6', + 67108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0b133e09ae177565dabef6186707da3156ad6d093c7dc0cde2ac33cf9b181c7', + 66908, + ), + }, + 'Fraunces': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7bed3f0ef015bdfe3828dd389859ff088e23d1b6999392fc3fb73b779b0a3dc', + 71216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0484d4462b33f641cba37d47641fc51b554b4f27e68fed5ddc1570a3b88b1a9', + 71472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10a4b7bfa01aa72af65d71ad05c16b1206e3532195d504e1317c48d25328b68c', + 71536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '097259a58f5d36e83a9cb47d9faf54d89bc62ae07e8fc563a5f015f73ae629e6', + 71556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e37ca7854810d52284c225fa3063a4cc1ac86058f60c603f33285666b91ddaf9', + 71572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '089e9beb4054ffa5870fd97578bcb6bc8e2664ba610d1a76389be114997d1d33', + 71608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23e1b61255126e965a71e1aacfb51a04455c4bcc8285b2e4d89a0abdc447c2b7', + 71564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a57b87e201c17d1cbba98eda8d5b16878511742a28743fbd6ae9c39941775d3d', + 71620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f93ed4f7fc49ea8d309820c04e6b2a94793c581971e8f21d3ffa74cb1fc12b6a', + 71664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '49fa026a7644b9edbaca0fd41133722eac84ca6d3a1ea1d79ba56a9b9ff3fc44', + 84824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f5106f5fe2a0ca82d67864c60e2e43a4f47ae317b0f3de52e7ea48503450c8de', + 85000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3253658be59efc3db4336e2906ade99dc2d597784902e70fff3e866d8f5a87ee', + 85056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'df93b57847627be0f1730e6d37b0ac738480d85f53e855925f13014df5f5073b', + 85004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8878b73f7ca3c8982198c7a7dec839151b48b54bd9007c33402a2a25eeec35cd', + 85084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b9a1b94242321e575c270b71dd85ab448b025e618c9d1885cea4ef639e109018', + 85152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '95c99625f7eaeac338e2b17b38d305953278b58e7b473c9eaba71ea16ad7a7be', + 85052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73548d4126a3a69341d8dab952ba9e3f43535bfcff7278b619ac0a984b13c376', + 85084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fec8497b76c8ef3dec57bbb38d8098e10d41ca4f4f6340a5e54544fc01ef9cd3', + 85036, + ), + }, + 'FreckleFace': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19ce2bd81ae7c7b609d93e1d3aa51f120f65265b6b2713534c90341543ae1777', + 105988, + ), + }, + 'FrederickatheGreat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe045833e0e825b5a7b4467390cf709cd732b6204eb411fe1a242b48e461319f', + 483876, + ), + }, + 'Fredoka': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b03d94bb7fbe0c6f76d53f78be7912b22eac5b860ad1b566892d8a24a93eb9c', + 48716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a5db7832feb3b8261603fc01e4411601c9b08d4107d3ddacc6b1a1b24a98078', + 48832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f33d2fcedde5d0920682170e6088df9501bab260f84d94213b0e0388d5586fa6', + 48768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '241f09c2822f1cde8677dc18da3fc2b9f35e87926f3fe4fd687538098f5d55fa', + 48744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb87f9cd22fc2af57c25c381f17d470f7d7ab40e19f51975b6c5b069051718d3', + 48564, + ), + }, + 'Freehand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'daff5e36778ad94ca188cb8200750c233b3f3d317502e2645b7fd9f97b1e3e35', + 176892, + ), + }, + 'Freeman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d8f92b89ee9637bc61954d1c6c3f7ff861c103ade73bf0eb8c320d27de120ec', + 142976, + ), + }, + 'Fresca': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8de5fc492647e6ccb18b4fc84cb02a7d99e2b6eebfc07ef585e3bb701702f42f', + 26184, + ), + }, + 'Frijole': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8e45896bd8460ea4f3fe47878979da2a6f463bcc0ccc639819c75551d1f64fd', + 225572, + ), + }, + 'Fruktur': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e96673b249dc8b827ed9d88c6f308bccdb8105197cadd126a25831faa28e553f', + 182368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd75c8dde746cfe121fb02cc57f4674831af1a73f593828dc81e5aa15b2356c02', + 182784, + ), + }, + 'FugazOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97b68263411764696e4ae45e32e2a3dec8fd61cb6d758f5ac1ae7282ea259ee7', + 25420, + ), + }, + 'Fuggles': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '141cb965077afe0aa3fec9107eb5bdfd1c9f4dd79f931b9ad096ac5947b8e5c8', + 99592, + ), + }, + 'FunnelDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1378968afb3117eba5ee938572754c234396eb86a6c2b6dd4157f4d951572ea2', + 32892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19b701946b1cd91fb15c887ce38d11dee71a268e251949f56ee6ef1e7b3388c5', + 32908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a26231817b6b190d87a6c1c5e22508506234280e19ef87cf43e4474085ea7a38', + 32856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d51297a4c10c1f6e50a7fa7012c721a258d310d026379d886e38583c134044d', + 32840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93a0436f5a88f489ccaf50e788be68e7c9bfc0a57d0fea5f04de3fdcd5558cb2', + 32788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa226371eeebb9f6897c021be731c116bd9d897a65b07139b8c78e58adb74447', + 32780, + ), + }, + 'FunnelSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '886babb51a5762838e45c225640076759deef3c0e260cc5b6f78c2f4e7442193', + 32796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '632d204569e7e2902e8a6888b29ccad232ef2e06f2e486a1c41580f483ed8adf', + 32964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac09c9d1083b80b4c5d8f6a3a5cf1d40f78fed1cb1fb859b80f8cada7d4e4f90', + 32940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4506be60be0d20f746b27ed2a16906c5e84564b0069903835e235dd12ca9617c', + 32980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e2b77d70a51cba636da2c366266a0f03da6bc1f74e8cf8029a15640b6e5cb6e', + 32868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ae8638884eb86538c26feb7d5681f62a00b1f5c056e15ddc1e7c1bbb212812b', + 32880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a2b8a64c3062447e269e314f3a512d5698bbc9615b0c72152677c04fd8d1f0f', + 33840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c2dd33b8029462b65c9b2e2578aff5bad6d755979b8b7200f4ab802b07034a1', + 33856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e4993f97e522646048a879dc3ab36278989b3b381b167dbc686c75dbe4c491c7', + 33972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '33d62fa273c81173a31bb50913d8154c5ee35214f00ea0d8db1a82872f0a2d82', + 33992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a3714694da46f267d749abec7906f0847ae89ce9c92f073f42e34d1ad48a7e99', + 33824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a15c87af69e2b9d7074e155d5b183f162946a49759d166dfe850c381dcb2a743', + 33904, + ), + }, + 'Fustat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68dd87825bd47b002a31b6b79050670971914fb7e205ef6d9314aa69a04ffdd2', + 84616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49e3ddf4699b7030a9d30d54ebb4141f720ad845d310961490fa8f3b21100685', + 84748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '036f6e7f111d4fe37406b6ec2c7217e1d6b4a6fc54f2da2e0ec565cab9dec056', + 84564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '222ba08a20a26b273ece82d440b5e5b23c6e87981a89e5000ad03d9570063de0', + 84760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efdd70381e38ccef27eb5cd5df5c496e85a428f0a7cc3b87e288eab7b3d4a64f', + 84792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24da1471fdb972151223b6f2e8393d85441f286d099a7017d55a15b8ffa5ec2d', + 84748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4f23a48cf99446c3784f416e1b9ca2abe2a3c3f694c52b78b3f99c4f3cb9dc1', + 84532, + ), + }, + 'FuzzyBubbles': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bf55cc082b0ec107c32bb2b0f6c5906739c35e38f146e1387b072bb817d6b83', + 95896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c8614696c218e8f2d1783049bfee5cc96be67fb70b6946dd5bf41aa706ea7dd', + 88996, + ), + }, + 'GFSDidot': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26a132c2c19d36cd8846b819e1e979a5a8836d9714d864f5cadd1dc01081ea05', + 163848, + ), + }, + 'GFSNeohellenic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea5d8bc33977afac45a70b0bcfc0d5510560dab5f847c7b0f05ae02ea2dc0725', + 176532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1f86e159cfddbe333ce7890c7f2685eb5a750f8228c6b536124d938ed7d841a1', + 157096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d2465a79dfc1912a9cd4956b3770d70a03f9f1052c8183d2aafe9949a3b84bd', + 142840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8073667f46f1e12a9a23bee79848a33cbe0da837df522155dbdd2c94a6ad186d', + 156680, + ), + }, + 'GaMaamli': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '039c6651538a098d08f13c348a54abef64ed76df3c4b5ecc687738fa22eb570a', + 277812, + ), + }, + 'Gabarito': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00bb7908a6561506f8ea24e72ed15a3686d3c9ba5ad75e04b920ff3f46eea0bb', + 100308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18ff7c69bea3ab359c8102b897ed1030c15febd5eaed1e1b924a759004fa433a', + 100664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b8d2212a360e0e7ff8a46768c159ec89c98690344dabc1b23f33999ee7ee14d', + 100656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efe5a216ede46e96501d9d5ca5087d7546f91e9a72f882082c0a0fcb7a5898fa', + 100532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b08bd09ac5e415dd3754929d32ac13ff8e2a6a4b0834094d91b2dfa288e25a25', + 100636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9dc1d2fbf744fdd87a41816c44732d23cfa8fb299f244e9f95b62c0b37b65d2', + 100272, + ), + }, + 'Gabriela': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9b0cbf40f09a6fe50f5629f11edf304eafc39f6c74e6e1ca7095343eccefbf8', + 67780, + ), + }, + 'Gaegu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa2586e5470c1e50ab9db4e5e45dc6163d4a283db19b96c7eb78410a272d0c3e', + 1665516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da0cb231768609aff6ce7e6cce0c05e7b3003f4cd6b1cb6ff0bd46c11daea268', + 1687664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b98eceffac8fecede0013304ef7e00761d570a0209a54769048573bcfceee1f6', + 1588556, + ), + }, + 'Gafata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2130ba4f123fc0a44d8a6e7058c60425acb34fb2eb16102d8273c766340f9494', + 35284, + ), + }, + 'GajrajOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2f85fd98fca5765df195edde59d7e8efd7c5be77e4bbfcc58e01aca981171f7', + 148728, + ), + }, + 'Galada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8432d507ffd003c422fe04c6b5df2f96bbc4268f5497689493933828bc5d931', + 149068, + ), + }, + 'Galdeano': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '928c6e1ee43f8ab9ff26c695148ad6a203d15a4e4bde725723d4043c8e722f7f', + 22900, + ), + }, + 'Galindo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4e28b9c469bfbbf4e0c7b26e8feace2a49cc07820d008e4d1931a5a1fa5a00a', + 55584, + ), + }, + 'GamjaFlower': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d9e0eba60b09fc0e5787971e046726e13d0f94149e47615c76ba3cbb34f0de2', + 6240100, + ), + }, + 'Gantari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3caa276460b73ad0f765145fa84400e1b825ac6bfc0c25edce9048479b7bfb1d', + 38192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'daa68cb29b951740241d76e6b3862d96d5c47655419bfee6685f3fd07ec967cd', + 38208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11e09b52c0492e3009db04d1162fe617a1223ab88356d1b0687e28dc16e97f1a', + 38108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c76d89d05eb50f52e9834f5bf160a5536dbd3473a071ce24f2c834e22c8c0c27', + 38108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ff87b412611a268f3eed748371b65dd921ce0092fd5680499f562b47a330598', + 38144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9af18237aaba9888f3d9a9e77e996510754d348316b1bef91e5af129fd155ed4', + 38100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7a5b35469a8d9cd2193a2d0974a11b0cc332f25eea2b0286b6384122a660bf9', + 37972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd5baaa5860fba62aaeddd0bf1b58a337e08b3f4f5aec80519568fe68d7b5a7e', + 38044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e186c9565dafc59ac2099f927e42a4d15703aed1a3186b8ced8f8a6c420d6eae', + 37908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '968606e1a52e428c805fec44d3559a93627c4bde00b65af6e940b8ffb2b1a5e8', + 38848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '228f44f474bf6a3216a2fac26d7fb2eb3b8d7457e4745176848a69341759c4c0', + 38904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '56b818c97f936fa5c086cf579e772dc605d45be2c51b554ea3f5e83e6f6f6d03', + 38844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '086e27fab6d2983bcb0d5c7eb3f9b94490d09875bf4c242eeab85321f2382f72', + 38720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e515cf8cd036e14e3b64243873947ad4909352a69c9d924c0e756655b43e2231', + 38804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '225b31548029dc5262bedbeada1b0b10e4841b5a4ca46612c410032267959a61', + 38828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aad7d6da7e086bcff0f4219fa37475e609e5c5364869772eee10cd0a3bef1143', + 38700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2d7ad2f01d94c6cfc0a7ed638b3d80573a5f6ab9b4c770d0cdf7286503bcd129', + 38764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'abb88b63946ff5ae560b420650a40286156d9614bab87c5a940ff1d4422adf77', + 38596, + ), + }, + 'GasoekOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61f2fc56f9d72d968f8dd834c7d24cb4b822eec52597656dd796feca7c121973', + 516100, + ), + }, + 'Gayathri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36b842b40f1fa5e3a255a7f703229a68e77aadb56ad9882fe759ee4cac03edcd', + 149780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '856ebe7b45457bcf480f5e18531f4fb35a2367b45e52a7d06c976f8c1494c0c3', + 148700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdf87794f44396d19dc08ae4ae81e6172e9b7ba47cb8f0484972120fbd8275dc', + 149624, + ), + }, + 'Geist': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4061f09e0cb1d3f7b2f12d2bf0c6642be5110f667e0f42dc3a403edeaff667ee', + 66452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd8c8aee1286c6a5f879829dba94e87ce421cef800d9b1c1ce1e1103d7e0e4df', + 66604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8417e56724541b6d6ce39f4f074782631aa10d8e874733c170399fa919aec825', + 66536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8c77de0dcaef23dc92d0c6f1e32778b0e0f06b91197a503495a9f126c9752a1', + 66560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae7ee8606ec4b58cb0126a2410f15da7eb0a255131917cf679f815b9b4585a06', + 66576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b38bd0250f78c22b151234a057c59778beb0dcca4c08396be4c407e29fda3b5e', + 66596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1d1176090d3f4b11d6116bb6e3dfac0e80f9d383dac3af5c8fe373de2e3ceff', + 66564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '169f1a011ccc97cdb51cd5db1eb5e6d02d04e50540d5efe5820bd28d07733bdd', + 66612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e42ce1df1dd6dd6937e77e765897e4f89b125e175fa1d0a0c9682d22b1308569', + 66540, + ), + }, + 'GeistMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c769e391d636e10c617d69747af176e9818de2517b045fbfdfa21432d33778b', + 69396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4400f133e14bb900e5b8c20dbc8bf76a34f3a9ee11194cee2f98ec959e7238b', + 69484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a5e8990bdfc1616b106c5b856e2680ba3b763f0c50f69fc0b0ffc7d8bedd0c2', + 69380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd29d9a7c90a0bc4e1c27308ebe182240267d95b57973a0d15c9f2c73c3ce326a', + 69324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d60fbda8856a78d4c52f464dc0df38414e6dd728f9a9af6b1d2aeb62cee63e6', + 69404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3dc0e3f25244f902a353289f76db5635cacc1f617c9519a93b309a86ad116676', + 69428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88d9ad8b6f7aa960f5e6d0f3f96d42a223be1c9b271bc010e84087606dfb9713', + 69336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71b9e5b7a280f56e0eeb4ff043c6d3ad61683e77cd87f04ac6689f7018980784', + 69328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0a57e3d2446b0e39f96eb81795559e073ad93a89d9d6e9282aed9fc4364898f', + 69320, + ), + }, + 'Gelasio': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1e1c6a76e3d43c4cf5f25abfcc8379c5d579a9216061df8a1fd5007d334c8d1', + 100940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '356e7e5228d64682829ce683fc4d2b14e0fce52a13a53bd16cae56345061ec0f', + 101232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e97ec5fae1caa5f22120b5195753010370becceac414a32618e7e1f557e8ed63', + 101340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11388e1b8524f2363e752fb656c1b48e553ea42881c0667eb89bddd9b4298627', + 101204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0f72e1e4d9c3f4a0484f0896c302e709d021ec2259455aad0a4ea93f3ce0764', + 102612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '802b89c550eb1d324e5e5c8a7cd98a4870748c1443e8450a95b56aca1462d6ee', + 102960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e06d993aa5bc567fac48c80af365a3ee61058ea51b2d3187b7c848e565e23b0', + 103024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5de86576900f6ba4e8446dbab31ce7479533b935dde45c2edafba6c4ac076c06', + 102704, + ), + }, + 'GemunuLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb3fa03219bee8cd6dc52ea02b95a721bfaa8c291b46c76408e6f2511a96317d', + 145064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29c4e21742b2010a83b63844b30625c7d80ba85fd80798473b3d71e6912230cb', + 145056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '479e63e97e70e480df5242a1756023d2e529b5d0d5de0588b13c34674d9b1542', + 145052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3a306074b241d73099495bb06453a955aabceb2195f9f78e33a82f27eee4f73', + 144916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94a4e7ad69f6cb6367adea887f559766d8324cdb936ae7a2df46caf8649568dc', + 144900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1161494e671cca776a0e6e132641b2441066259a72d2641110828dde08a03a0', + 144788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83366055c34eb60a957c100a2310722578e48f2a693c51d238b3f92a4c1ad9a1', + 144544, + ), + }, + 'Genos': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db15f0ec2ead42fb8e7d83b5462de6d703ce0148bfa2dc319e6ecac00a16f234', + 74604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0b18262d2e3bf4be28c57035f612ddb1b772c9a18cf7bf5dc8a87a777792731', + 74780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ba9c6c8a6dbab420eb60220a7868fffcb1625eee69d4f04734d93959dd8ade2', + 74744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '757c9dec784f9fc9d68c7b26f814b25ea59b6748f3352127d1e1b6ed7a2ead57', + 74776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '148bfa7878d5c68921c96bdd8ba3dd62785273e1d2f344733b0d4279f6ddc50e', + 74716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73f6d9567f0ddf085a640df9241d515def386727b638728f25897714f6db8569', + 74744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2af5422c7746b062ddbb491709ec7b46853f2b2aa19db8622fb2f99188b0cc79', + 74804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '264a52757cc4f8c3ef494c7ecbcdaaa68a69e58aec8aa2d5cf5b71724429bff4', + 74828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a03635e586c93b49780814bad5f9d602cfbee069f6631bb4933709bae84d8183', + 74456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07a8451d89d22d44e0838b0e9fe459fec4b8823ca48b3704cc8a29db858b07e2', + 80660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '25f1b6666b2247cd08129bc5b783922977ac33a79da2f7e6865dfe550d9b7088', + 80788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1e3f0e43a174b84b52a14d597eef20a75b4db63298f52dd7b25852fd22f6a212', + 80800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4d38cfd4d4f4cc4d7d48736efe293d0cd1ae2805ee9fb9df7718d21d50aca51c', + 80708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd2f68d970d0a8b73884e36d5e9c3c3ae11f7afb6294f94f7d98e84c4a0f5c730', + 80888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce331d55418c92076f27a486ef0072943b78adac649a703e485db079df15a379', + 80924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5118257f0011ecc2c4d24222cb1ba9e2beb222332f65d94ad36e40783431467c', + 80876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a2a208ea84d0e94e2bcaa17b58270ffb63a89ad140a461d9f650b40d8916ca97', + 80844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eda0ca42e89c6ca8dd6837e41309227564247533c6dd8ee3800b0d5131f52a85', + 80636, + ), + }, + 'GentiumBookPlus': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf47e63699ba03f44205881dd862e9127eec1d348c8907f2c15d877015af7ea6', + 422484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '17f2786f409895c81d67081ef9450c26f29009c1b784812f894e50295192cd48', + 453480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99aefcb41ae939044e6eed546579a017f0d8e49c3597b0d2c8f1d3c3518f9622', + 425744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a0d2139194cf21bfa5f0a7956f871206df60a33165e52007e6263afdf1e5896c', + 457732, + ), + }, + 'GentiumPlus': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28f2b4944e2a125cafd82fd90967a382e35b3e4a4232fb9ed0a4d5a2f7ed7bb4', + 419980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4f1327239df4342b6b1049ee6c6cc4a112226a2e98cd312b6e1ffd6f81539b64', + 451052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78c73cde2aaef84c82fa776ba70f73f8a84b1e80f926f69f884617730632b552', + 424176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a9420052d0a15788273c42bc60a16edcaea50c80b2d6980849b8442df39a8ea1', + 455684, + ), + }, + 'Geo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f79c41fa9c99729ae68689c8c66dcdf8718c2407e6b8fef7b9062ea8c16dfff', + 12944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c70217473395a8c2dc83e04a633f34dba2de290c6d248b39428c1ffc735d89a', + 13868, + ), + }, + 'Geologica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '998830bed8f42583ea3e40da7754ef0ee2a7f30ed60a3fcf18e99f420e02b9e5', + 130124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e969b4a0e55b763ada3c8b10ab3bd5086366364c319570604ea6a6a768670a02', + 130236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f53b64669731d8cbbae7f3197a92bce9d3334917d16e49c316775a4d6a405fc', + 130152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40799e9dc44521b842bff146de4b323903759889ad9168a4c695757330222c64', + 130120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c9defa77eba8d0ebae4d1495dc9433ea5a07e1cb1e0e1d1750cd29276300a6d', + 130392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '951b11a73010e55746a1b1e15c9edffa25ab5cdc2bc152f9e41cfbe038d44029', + 130740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be25761cd98a99d770d4bf68b805134ffa81583dcfc7b47bf0ecf3dcb2bbd411', + 130852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cebaa7e24e775cf3b212fb2552c3c36cf0e7fbaf3c603a70814ff4b1ec7a5ff', + 131080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '722ad0d4494bd013e07b0d176e26373214990011ab9292b549cc06e2bbf12e94', + 130928, + ), + }, + 'Geom': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98b7d211be4b524c461689f25b72f84b0adaa0c9706ac2cdb570f486fff255e2', + 45448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40be22f178a9c32c7bb431bd6b2a38cb9744d8140fb9c7dad90a1f963d7d334a', + 53412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f808e6e25b1aa510b3e7afa7d20ce6aa20ebe09222d9fa2985acc2cc6cd44d72', + 53476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85b41f79dc0cfe7058a5a75428b16dff80bef98bff9272a163864bc3d73925de', + 53356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '555988aa5caac9bf380421447deec0b8cc6e623772f419ceaf2828113d09b044', + 53352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1da15df7946fd0c6866e433b1a6f1bf3b4791ba54b30c37b3b913c48f390f193', + 53264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b457204ec5f1afa5fc8b50805ff141738cc6aa06a78742b740a81945bbae49c1', + 45420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9d94063d9083ce83ff1b97622044b7188dce65491484ee1fbe94115ff7965aea', + 46804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47deb650232c0fc2afe1cc1f0c606ce9ab0c3df4a1110aa342b56d219e0b4a2f', + 54660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1981860004c6eb1d031fb221335f1fbf4bcc17a4c76af75a7ca967e33aac794', + 54796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e79333ba2fad64e368949214ed6f319c275142493f612bc611f77215d1d0ee79', + 54668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '55a9d1fcebf12b5d0f84489ea848310f4bc889b7d08cdc175d4878090588bd0d', + 54600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07cecd23ca6ceb1af9e4f75936ecf06bf17fef9da374743abfea01e39adcfec0', + 54580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bdd89afaced562768c90cab902f4aabd76dfea45581577c2057ba308ebcf5430', + 46760, + ), + }, + 'Georama': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1971ada08364165dcde168d7d8c1e223d772827a3bc9ae790aa25c2b7c64fc2b', + 90444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd53d9c17f1db63614754dcb55bf1b4a107219150667cfcb235195b3c7aab87de', + 92000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4041f56e2de5b2f5c56840f364d6c6f287a74a4e15a33877549842f8fb100bb0', + 91988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cb0fd3130df770c536539476384b2b9f6aa15319cbcf4794105dc71924e34d9', + 91976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ab1d80bb6f1c01ffac49fc3a0b096d94d98c2af255abc3b473efd320bbd0550', + 91944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c49fa4ac1a8db58324a64a3a73931618c049ea87ca2628d7462dbf8cf16962bb', + 91976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af036debe7eb7605b2c1ba9bfc1de0da193fb9dd9d658547c0fc65db03ae6ad4', + 91868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4db97b2062d52fd64c1fb0f13a58b027b03b1dcd7860ff935dc9931b5c6c515', + 91888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fc820c15af10fbcaa6166bafb2253c662fcba16d64f4f52b13207157b841e35', + 91804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f2e6bd01368fe439f05f0c09a9bd8a641a29d68c9562e09c4ef8ebb5e3f15819', + 92072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '79815646cd9dbf4cee2ceaea1277fb40ccd38d70fe28d39cff25c95f3764dec1', + 92968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dcb1a493c7ba891c37de60cdf5648b032a676eb3247f96f6a2dfee104330fb24', + 92908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '793e5b742eabac9433b819e6034836762e4be4ec44f9509b196198afc7462972', + 92792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6fe06d540717093fd778c345bbd951e9f04198d6523997fb83652a6e29c1e673', + 92912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73b1223d9f967a6c7290f4f53cc8c238d93f85109b1fcf6577584a5716969dfe', + 92916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd61ec35763b123d7aa77c39cddadf22fd963e5107c763d90046095a269b44c89', + 92792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '66a3c021490413f4512d1b44c1dda58ede5536e525f9431ab92f2fd5bcdf5eab', + 92908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a43dcd037acf4e7b5c23f52ba59c42fb40a27e96816d180930905c81b8f04b7', + 92772, + ), + }, + 'Geostar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59a7f92bc44524705a523f1efd0fc6b7185a8c7391a0d473c7e5fba76562e67b', + 38968, + ), + }, + 'GeostarFill': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2297655cb48ff297959f9eb7c15e4f1164fa717480c468d778b9ce855c74bdd3', + 36484, + ), + }, + 'GermaniaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fd14077a2f4be59ff9ccb5b811993e51f64cc6858caca87aa1fd54d32e653da', + 29864, + ), + }, + 'GideonRoman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3492269e5c5ecb1dacdd2f0779272fd73f0868e13e00b2f6d1e5f04d38aeea5a', + 95056, + ), + }, + 'Gidole': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2ce99da2390bf963a550654313270539b2035268b53e578be360a8bebe6a3fb', + 83712, + ), + }, + 'Gidugu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcfc49aeece37bb46433665dfe49a04b6c8f6c8b01c70d36de32f5d3b7339a8d', + 258572, + ), + }, + 'GildaDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c17ce777e720df048c7aa192a0f57059a1ddefa6c8206b08c5052b165d153ff', + 46028, + ), + }, + 'Girassol': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1192a737479de6f9241d0aceab300f1c131b5ad987c88cdfb0c17a7db296c43', + 31140, + ), + }, + 'GiveYouGlory': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9839d02109aedf46cb2518cd7916de14ab5e8650f14b7e463afcd7316caf49b6', + 39152, + ), + }, + 'GlassAntiqua': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '210409806b391c698a7e9c19378cbbb5cd95a22894639bf38ad0ea2304b57cea', + 60540, + ), + }, + 'Glegoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1777d4817b02486975978f7357726a90359720c0446b0afe9a00421c9f1716b3', + 111072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8e7f861f2528c68b0d7a7e267e4e5186ee6b7dfed6df37fe55d82bf3675e395', + 108896, + ), + }, + 'Gloock': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5366303cf8d29ddead0fd6181cb2942b243079ea53e009042f7cb716ed46d916', + 64052, + ), + }, + 'GloriaHallelujah': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a1e6858fb4cdffbd29a5489caf7f09977f20c8fbb5cc43d4f3dd2affd19d47b', + 42056, + ), + }, + 'Glory': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f5ba21638103f61cb212faebd3e5f58d41e47d4af9e53c91f1e584d071b02a6', + 52380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81c1fb8d4abb9eadd91b527b07731e63431672426917bf4d230324ba42311abf', + 52612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bdfb6c45a06a2d40140e9d62e933a9fbc82721097adfa0dc49b0f50700a602e', + 52640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d6c72862206c44c276adbb0021271ee7954a236d88afb842f4971e46d44c105', + 52668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9859f92d4d75c3349272bde2d83cb20f0abc4f952ab9b7489a035da5a9998b64', + 52736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14e2cc31b1c9f6273225246cda2d09d6a3fecae5f1d5c92895253adcedf8f37d', + 52648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c7258cbb45c455e7ff29ebe8de801ff503e99be16fa83c5933120764f1fc71c', + 52624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b50db17e70e246e1e7eff064335c602f85e57e1cc63ac4d2471f1f75e14756bb', + 52700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bc6f78cadb8f608665ec176b875fe076a4e541fc66848974c5f009231057f127', + 53992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b1bff088b574642fa830d08a1730cf07fc589e6a7d5a8bacd072d10feffb12d6', + 54272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '56b555d3a4444cbacf299a8adae3e6f14fc96c6aca22e35f4b9a779073790623', + 54312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a3db3d84fad42364beaeadd0f53d9840ea3b7974e7d90d2008cc355915aad430', + 54284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '31546df34471e41f2bf2b389a7105d18c02a7f32fd21257b34ae498322020dff', + 54396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '95450c52cecaed31ed9f5988e4ce2e82f9982a2aacffa42c15d9adc7b143892e', + 54532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2629ec2476b732a77e5ac1a17f78f2b93071295fe05ea8ee4b7a455cf95d79b2', + 54448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b050ecdaaccf7f5648c46dc0df7c65e694e6834337a8c613c5b88a60152d9874', + 54516, + ), + }, + 'Gluten': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76dba1c360a76d3995dea6779d1b8d65a89f2f2c72514f28b11a7adb854f59ce', + 85956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b460deed46b37f51cc55a4f30eec20b2f4e3cac7b2b51bc545a6e71330e24c9', + 86528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdfd22c5073e6e1735075e57fa0caa87bd1196a06005a2200da6c159fd17e516', + 86592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6baf8918fe45fe58199d9dda885e311ea2b267e835d4d61c91e136d6b229b0b', + 86660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ff549203a6f49562c000f0441c0ab917a32f14325420897e3e35449b5a63e1a', + 86728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '944682469e00a227bbb41c69397705f9aaaf26f8bf3662ad6322f6c73cab05a6', + 86776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd0bbb2472daa564ef72cc1b5b0323991f65f47e9f383444fb529df3c0bc0cc1', + 86772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e3920cda14a87419c748e935e5b6bd80bd387788bd3559ec67a526457abdb0d', + 86848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b99c285ebfb9c1e875275033ce461bb7318420ba351b7c748132917de2f239a', + 86732, + ), + }, + 'GoblinOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1814b2ff4e3cf66cf0a62c549cd26c9f530b423f6d452c28a162c312facd82b1', + 32924, + ), + }, + 'GochiHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e14027767a3e1882fe5134c51b348fa3f1283786a15bd03eec929f92adb77ed1', + 34972, + ), + }, + 'Goldman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e9518725d814448b0c46ab061faf687bf6b79a68f264e1db99698338a099d4c', + 53520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3d60dea88e0623b53ae6eb04533dfbace14e596f9007ff9b9c49020a3b849a6', + 53308, + ), + }, + 'GolosText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22708024491c2eb3f852e335cddc9a75c4eccfd3cce0d5f671bed4ddfa8e8549', + 64216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ca281cd7fcc737d89391bf8bd597247416d581a15d2c796e502f06f2d9e444e', + 64208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b04dc2ef74060497e1d3f71b4f8f4d70e7c17bfe215841850459a7b3b00c99c', + 64284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10a47e2c00b070bde14c9188173147c2f26ff9e134346372282989abfe91d223', + 64136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88c6ea91033f124ab758ff5442c0e875974e04adc678ca62cfe4aeea3a60466c', + 64248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '488eb5aa0bdfbb9e96763eba799df175b5f3bfe7a5e256984ab96d66c38d24a6', + 64140, + ), + }, + 'GoogleSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86a48b7777eca43fc3de8301af904fea22a910881edb1ee544c680937457ca8c', + 1934704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '582db67e51706253ea35c2fa6bf1d9488e436095c7f22d344ecee713e071c6e7', + 1940644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef4d9928a58838b97567c31bbad347db2cb419c0c75e7eb622b3bf0b3cf5dc0e', + 1937812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d41821b8055088bce5bc9c1007a6321fcbc1a06d8572e0e4f6ee93c9f0c470f', + 1937172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1cd38a80d2c71a9f94b2e55f6b857434f93ac7b2f3311655c4866e85cc88c449', + 1998136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eecd761274d5ad50c5469197c3e284a06f6356ddd5eb2675255459ac046eb94b', + 2000588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '926c3fec87d962545d6ca2bb7a366a756cb04bf27b01a570a0d628f6bb645a7f', + 2001860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3fd76464b4827a4c2ee7a6136fe9f106c0a7fcf8820ee9d10bcdd8f71de73e3e', + 2001328, + ), + }, + 'GoogleSansCode': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fecebbb99f02250a3c1c40930618595fae83848ab6397be8b2033177b462f38', + 53756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad78a572623db4796a855a8264ff8b4e6275c2288fb6c6bc2b5521189f786a03', + 53832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a501e8158c21471bd41e16b14dd7a274eb94de922aaa4f360d5263cb725727fc', + 53812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd57df2a7ff20ea89df761448cfaa3bc8a84c7ad26c818a942fdfa682ec7ea4ba', + 54160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0297f18bc22ab5c7f3bf302c2a7ab8c1b0f1e50cb60f93ad64db290955057e1a', + 54340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbb0b4d3564ecc59808e722838bad313e15e0af53675a71eccb9ec931580b407', + 54508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eb705305d3033d4045abd10ee2afbfb7890da80637bfe2b72c00d85fbe45c58e', + 55772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '72eba9bb7e9e5e28f0cf127e8f7c477532950d221011d8644dda0c6b5ac9f2bf', + 55764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3d22f21871085d6a6898d321f467506930da159b936594d508961661fb4d9cd0', + 55924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e0e34c219fd3b6cfb65d7a4279f558609628b7e95576a8866f41cc7ea598f31', + 56276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c31cdfa55178859df43cfb60aee7541a439881b8491c256f5d5c09fe66e5dd3c', + 56352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '398be267746f5f90414a66c6fd73af6d4e4b4eb050fe1bd4da8fb3fda508b8bc', + 56588, + ), + }, + 'GoogleSansFlex': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd85824e6d12b762cc9f7bd163f0f2c49a395b46bd92e61d188d0c760ad0f41f8', + 122848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07e36cd077536f5d511605383269a482437625e5cc7323b7955bd26459648adf', + 122880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4df55b0f90f7c594045eebad375f3d154856913e270d2df825a6c244e4302ac', + 122832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae5f2d6dc93bb5933f70717436d6a7447138ffc35e84ee0749bc66b804a78fe9', + 122680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f93da8420978944a1a878d9d015d499256fa8442f526ceb54f8c61c5a037b58', + 122928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e7dc00d1c25fb4db008d83eea084a69533fde0216b0b30d59eb1dd9d74c3623', + 123096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f37b9fb083959d26aa06789b571c347fb81e7bc42d0919b251af6579de8b69d', + 123152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '328f20cae7bf7c5a635ea40d8e0a62428f17f3a8ff5b6e0e8652bbe723e4eccb', + 123324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f04967dc9af689aca5a6e28506bbd8fa8ee91168214060f9b087deca3e362f2', + 123376, + ), + }, + 'Gorditas': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45b651d82f53948b18ef0930e52cc803ab811f6c483c1d16c95a14fb567a826d', + 56976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d777debf400c511a1efd40061b80d7645182e4cae45a6fb5dfd168bdf16bd54', + 57968, + ), + }, + 'GothicA1': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcc2e9fa0d83552d6dd91b91891cbcac320767659d99396e421e27f82e9b6548', + 1315212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be936566fcc411cb620aec5f8c15f38f6b4aa79d39fd599cc275a4e860642c06', + 1313544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90eb2bb0b1dfa86bb89642bf64f5c5d2717e14bfbb092059e5f2df8f9a888c75', + 1314200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ce640307f4f753e9a7d3af5c4fd7d795c2bf580890bb2b090906b5cc9b5492c', + 1311204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73ea430d20c7e309b3e5d5984bc1ffcd550eb00d347a0e6403c37f6638e3d4ad', + 1311796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '148e0a3968f1a0ee7002259bfc110948d56cce11d038b175f642e29b1a02a9d0', + 1311188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '075cd4130fd9f3a4c9c128b609aec0b0dd53245f194d60e043d997c18e2f55b5', + 1310928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ceed06e0b19295396e77209901bf58d669bad7453fac2760c7d50741cfa9303', + 1310756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '982298ecf7367887e62a3a06fd71a7c7abd1a167e3917f5cbdef3ba09636037c', + 1312028, + ), + }, + 'Gotu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98d4a3d184f0b26de233d2e9b6f51a705f62c76c4f2d5d2e52a83c9d94e05132', + 518800, + ), + }, + 'GoudyBookletter1911': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9eaa28534e2332649b5b4cf8d9797691016bf271a83acf52faa1b36c8ab5d3c', + 36796, + ), + }, + 'GowunBatang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bc1faf7965c79cd23cc21bea5be0a0582ba6804d33f00e50f3bb27ed10965d0', + 8430916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'acca988be385cf6546f0e7f7da97925e99fa47e7862819a2a724aa1c2a660ee5', + 8175220, + ), + }, + 'GowunDodum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a01aae5ed6c9f057ac9cde3d8a1bbb0134dfd3bd2eda692b7e0df0fcf175154', + 7226720, + ), + }, + 'Graduate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdca8e407cce49d93b08f5c6d44dd1c79e66e36eb8a96d63b519d009fd5e7358', + 20784, + ), + }, + 'GrandHotel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff1a0bf6514f70dff314a728275a77ae13cc84481727d49daa7700a1c77f4e24', + 60668, + ), + }, + 'GrandifloraOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1720ac1ad1ce936cf8066de63a4c0638a47a657e0e28e59a6b89f3458685656b', + 1028608, + ), + }, + 'Grandstander': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2185dceddf66c671beb953000942e4ffd023fac3a2b3d5d8fef0f535ecb47843', + 83136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff53717f7ce6cc315897d06a1aea42d54bf81b4f4a1421a7380e187e9e8072be', + 83324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b5bea2d6d6b75c238983fdaa0bd3496812e30a45137d05b0eb2d86b3cc47caa', + 83344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2070fddf4a2d238d7fcb805237a8cfb931c5a238224abea1b51fbc6d09a92625', + 83344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '155cabf37c06869493c3470bced1b9b08fe0d49b821a95253ecadcb23f75dc83', + 83400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a280312d0934838ec7ddb9092db2748cb17440f8e12c7971c74431796131394e', + 83440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a67b0664fb01da1dacd69ba17f553db25b02efe5031870fd4ae5f63b7451e29d', + 83416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4842eafe00da06a3d3cc018fdf9342313fa9a0c8c47d0f371ac2b5fcc6931f7e', + 83480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '926f43c4b90669cf6a27292b00a3de29e9951e3c7fa69618f3637bcb7ea46c3b', + 83288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1685c7b87ddcbde4e6a4ab511b0d67110f81cf68ce78fafb072ad0587b50c668', + 83796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'be7ebdeb58096eb84d0dae50448060828a2720202818c0a314c35b1c9531e4e6', + 83972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'df62019bd0c76ca01a5db9f6d547f3df508a53f65b40557dbd8dd7f25955047c', + 83852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4b3ee2af4edd2d2a966c0328165c16ff5e5f31bcfa680a0515be59b42640447b', + 83728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '815fb1010fc7b3b4a9935bd2727753bd61dfeba8e2e1deba0ad545b192e72b42', + 83872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93fcd1fc6e1dce6c53296200295daba1f703f4fe087ea356587bd22515b2a422', + 83872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f4fdda5656c18b93fd18e8e624bc04ab4c4de38bab13ba1fc56c7b5f0559028b', + 83832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f01f441b7867c9f8d87c2d1283e2038a1436c75505ce41c1bc64347454567659', + 83940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '57c064c2bf5600af995d5c102fb2ad6570c397fedd221368a00ee5955c59b677', + 83784, + ), + }, + 'GrapeNuts': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '986b2e02f60d40899fee614a8864d9bcac51f2b914c96cf9e1ba04c248fb3d1b', + 84952, + ), + }, + 'GravitasOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f88e7e5440ef2e1a3411bace216a316397ad8ecdb5aa2c70d630e27f1eed605', + 37360, + ), + }, + 'GreatVibes': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d9df90fa57086aeb92149a4bec8b1e30c8a0e5ecc3a8b64663527eb6b935219', + 249728, + ), + }, + 'GrechenFuemen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a104c32595aa543c1f06eadcccc0e07d6b2f4b615a29717ac808a4bc2b79618', + 90280, + ), + }, + 'Grenze': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd0905e69d662e40b0b0dea549c8fa228145e2fa4125fc27064f8cdffe9af26b', + 64780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a1a2ac0f009402544317fc095e345f1ceb85f5c49447230c4b8c15f2fbf17a7b', + 67292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4ff8ce6f5630f53d11e6a86692261fd7702cc5c4ca21b6e51bac40b4ae17d48', + 65072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b9d5a4c3f9363080973f3ae49eb5087940965c6ef61996c6bf6ff926e53c2e64', + 67476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92131b19b06aada699a0187b48052e7d6a9491aa3c1574bb38970748a60c43d2', + 64900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b63d3aaff65dcd4ab4f6c6292f60bf28a06397ad53ef58d18dbe3e94b296a71', + 67428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3305ec8eb951bd29fb71746197b927b1f2feaf490077b67f3b490303a96e028', + 64836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '42270c99790b21b761ff5c305abdaf3674d665ce0a15df662e779ea28819d5fb', + 66872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1dd0a3c26198fdd67e6581955d977457d50edc1c4615e0775366d5394cdcc5a', + 64816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fb894d592d1560218faec92d2488da2eba2a69444300590d1f22395faa1e5cbb', + 67452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bdaff28ee15712b870c55917481855920a6325e10db122795bc4451bc773d47', + 64676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6d3b44addb1c8fc89224922238ed34f499ff8b5beb6083bd3e0282c816c44663', + 67296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '044346f16d06d1b382b06ab8aa9684bb564024fc9855cc8df43d99aa97353553', + 64608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dda89bb95e9af4a570359e6ff4216165a9faddfaf851cb9acd04ba5ca5de769f', + 67244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a9c56a437eede48957fe3a7c56b8dc690dd9ec425c9b9aaf6ab2ed556f8c2c5', + 64744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '586237e591dae5714867e2eb76ec252cf52ac7e26968b712debbfc7a73993879', + 67164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc9f366a5ebbfc5539466b2c33aa01b06570d4df39a714ced551bb01bbc48ff0', + 64488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '83f0531867318d330f16049337b2a41839dc38738d8473106c7ee54ba4f98c15', + 67224, + ), + }, + 'GrenzeGotisch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3842855c4868a8f33b9ca1b8891073b2ae617e666832a900e45e6b1fe848bf34', + 70456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c5937854b6418a57e134b200d77aad4eac0b7db82621b0566593e00f72b7418', + 70596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0154aec7f28718ee0a9e0d445caec79a7192073a95d1b5b4a5049bef266fae6', + 70620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f5cc103ac71c137789a3ca7e9721257df1d9eb98e3381ed272c5fc63f8fd666', + 70452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '588356c775cb554234f3c139bd1ba17cd0b2727095f8082d5cc77618db6175bb', + 70580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23872fcaaf789fe3024a5ee95a3e81811cc0c7283c1adc85999a06ac974ecfa7', + 70676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34ac0e8c6de6618f3958b2444270892bb0216496a20e8ad918f49fcccd5df401', + 70624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a484782324d3fce2fffc20016158b7927a718094caf709e932781750ef040bf1', + 70692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef8fc6f64fa4062a2487b3bd973bf6ad90679499a108a2b885c5f1bb4d1e298c', + 70664, + ), + }, + 'GreyQo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '749230aff2ce6c5b2d42163ecd998812667c3ae7a298c3dc266a76f69a7a301e', + 110152, + ), + }, + 'Griffy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b71c5cb9d4cb052c2e0cb638c1a718f132913acca52be1a89e9131ce2ed1f675', + 206436, + ), + }, + 'Gruppo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42ab5c404b9550d4f1a31b7be360f25912d8172819ba00dd31d6a49bb596bc62', + 55868, + ), + }, + 'Gudea': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a04ae9ed9576e48673ef0583571cd3a86198389afc3d3df1eeb1c27fb7fed2ea', + 20756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '65ca31e43ce99a529d26d0f5da008f95a678b7dc6c862c64bc9742005d6f23df', + 25060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ced3df32809c0cf7e468efd24a44de18447b9504bdcef10bba824070b6fdb85c', + 20288, + ), + }, + 'Gugi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1aa1f1eae1b69f3cf4527611a667c96e14c3e5c9a5d9abe0a6b492d28cc2a5cf', + 552880, + ), + }, + 'Gulzar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6171b89fb28baf9cb8f601725e08f94e8854807b0c5eb72653029dee817accd7', + 869992, + ), + }, + 'Gupter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61848ad3c0d95965de9f6f3517f0522dc699761eba36cf5041ddd9f946ca40b2', + 33868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61c82d67594a4307a7fe3fe03111e85169a39fed51bf980eb0c5dd2622561adf', + 33688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24c26b3b7a4798acefb6d5d57119beafd485a0ff7cf2002249848555c934b4ce', + 33692, + ), + }, + 'Gurajada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7db822f22b585cba984a5aa1e4a9b1e40e54fe74a245df6e3358ff631f606209', + 226296, + ), + }, + 'Gwendolyn': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70be19051b48f139c9c54d1234b57e351883d7b5aa4e7e5813325a346d726483', + 105932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a8e8d44d345aa2aa9f9c8ec963daa87d3cc5d3c4d990cdcc4efabe2a4d2ec02', + 109084, + ), + }, + 'Habibi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'adcda968b0cc613f9f4cc880aec94b8ae4e46a65d280def4433dce25537e7375', + 32692, + ), + }, + 'HachiMaruPop': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88bb6ab35c64d4b2c4e4dbff81940660bbfe878d23a0cf06e08904654ea30e4f', + 4374644, + ), + }, + 'Hahmlet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56da630475ccec105115be6076624a83c8f1d985c96de92a671dda7bfc6d5351', + 1467208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f78f33cd2b75e763b7600a606070aa7971717e571079e9b33adc6ff44cef579', + 1475716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '271edcb2f79a353298510c7bfe60d8b3da5c8cae00b71a5f3566c36e32acc1ff', + 1479464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3b200882f8c8b4f26d844dfbafc5a6340877c3105446f56ea46d5b4a7231492', + 1482704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e58f854a336fda4a6f7f6f9d9b712769c6a231c809684a71c16a67c0bdb5f5a', + 1486344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6365d3e3feb456d2703d968ff89738b99a8a8e27daae6e4d2f9a7a263c186cab', + 1487176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f997bab71734a5583b6472fcd3fd407b8647405be7c6e215e22f0b02de4e4d64', + 1484424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe3a83486d4dc5b55235df3c30ba5e69f9b55afd5fec98bdca3983c7c5f45bbb', + 1482276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d061b463a2cc3d029117d5ece0ea5c2de7bf9a3c68f973147640b2eb7285ee9', + 1478360, + ), + }, + 'Halant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0585282b8615ae3fb54b8810763a398c8a09f2d9cfc025f23db5da00f2910aaa', + 158884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83eefa807c0685aef8acd83cd0d7a8330e835779a8b2620b8575d4af6bbd2769', + 158696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0910f22e003b05eb5cb750c3e03e553f0c3e4e9ed2e5673e379d3ab27e25513', + 156496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d21596560886e4a304711974ee214b7bf1541bfd4ba2687b153f33f4a721ee6', + 154528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f665a1d57657cc5c449b943fe73cc1597459a145e912bfff1a10671ac6b6d2f', + 153656, + ), + }, + 'HammersmithOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a638f11360bf345e0aa7d82e6b589e82454a36b2319a488990f11a511b1578dc', + 53680, + ), + }, + 'Hanalei': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e74233101b285a6bab9205a3ea2a9428ea6b7849b1451baf72efcef71d2e7e8e', + 181784, + ), + }, + 'HanaleiFill': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9599b1f463d94b290dd33d09c7585730cd5964e17ebf3aa8b80034bb1ed7930f', + 89792, + ), + }, + 'Handjet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2e7237711aa05ac419dda727da73c80e2003be84702c8b44769c7647f084456', + 183604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56b8755d0cb6dada001df697bae5373c11604f47b0b4a3574ca6c920f18f5291', + 183652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '950043629b121e8f4e36c72caf40ecce9393c8d8826b698fb71e281444ee5934', + 183612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1ab55e03a683b2834949dd5009ad89b9eec7c653ea2a87c6c8af326ccbfb920', + 183592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b358ec5291e7e4561dd193318b32693b378afce3d513f49d5a24b5b3ff88890', + 183620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f68c9f0a1631ac47b2336e5f122ec12bc309d7e11894b3ed8d39148ed85fbd13', + 183668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8470aa3689ad873af1ecce8286668fbe19fdce4f54bcef813c981d13608c2348', + 183600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8f79915db82659d817888c2d4933a0322e99171b79c14e6601cb51e9f449785', + 183692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28ee37bffa17a4f0376326ab4b2c1bc2ac2215e8b2fd304b1628c83d97bfce79', + 183660, + ), + }, + 'Handlee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e92b00d221f9645dddf0e69149a6981b6a9520417d3a7709a9b1e705b673be86', + 37208, + ), + }, + 'HankenGrotesk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32ae4e0e38ddd99b241101a4c9ebbf36365a355fa5eded27f9e6a15aa589d7f4', + 57172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67702984995cea6a352cf5a8367f4c5c70f4517bf55367a4cb953a3627eb3830', + 57292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f6a10fb26d6c8294ca2fbc798422a275b1a143bcf37471d04fa5355fa9e3b54', + 57196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6eaf551f59f7c63591bea65dc520dfd02933c251e76fda9f9093d5fcbfd05aa', + 57224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '017e4179a7aa9b0fdfdd19f2cc88f0ec72192876f1ea1d4fd0473e2f2a68014f', + 57216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a268cc4971ec4478ed7f52046fc2fd356b75f729dfd91d418c08fb3ed66b80f9', + 57188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '783ad25c85ab01cb3b6c1503754bbb1148ddafae4d79f45c52a4c82b75bab44f', + 57120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f368b6ef9739142850394d9db62c948509de1b7ecc448468f928e809cbf926f', + 57172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25d2c7cb380a611bfcca90ff44055c1ce61ca126a472909ed8493c4cddb6ae89', + 57128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '849ad310a3de7d52bad72c42def10859cfe074d2b9c2ceb7d04721383bcf2302', + 61240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c854040a7bc314705ec05e10b95818dfb2395d9e0801b30324ffdf4b7b467714', + 61472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a025afed9be34ba285bc5040577d30cb30e8295bda5fd736e603b9550c8c4ebe', + 61432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '91643fa6071ca4e1401d5a8ebdb96f64296d9616bb544cf30c5506c34db7d742', + 61200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '665ec896c3b95ada9cb80376f3d8cd932c68842e27d7165cda1274fea8d10cb2', + 61432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '268cb4dd92eb09d8a4f5ff17122b42fbcb619606a0606da8492fc56ec9be69e1', + 61396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bda11d43394ccc3a973f6cf8e885ed69bdf660a24c01379332b4f7110b15d304', + 61320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce72832aabab9d8ea520b188bc0b4a7f40cd98b7fe46a2dc0bebceabeacc707b', + 61428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e0be81db4d4f420f75a33b22ac1b8ccbcef18f88fbd71887978e7ae4b45232fa', + 61228, + ), + }, + 'Hanuman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd50bcd554870ce3a3c78e19964ec4f4872db4a71d543b34349b4dbd4e58f131e', + 57620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c639a97d93e7ff8e340f8b4032dd1df0e8dce00ac03559918d7dd79933f36cef', + 57700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9575673bfa79d2afc9931ecd873f298d9443ac99c105ee928d610fe5a710d350', + 57584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33be0ec06b564abd1fb1a40598dcc019024e64d65667c7e415b1855adce5c372', + 57380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46a203452945e66c760b19fac8ace36f3a73695bc36d7c84083354c025dfff07', + 57336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1655e31f9bc277397bc92fc2b0c9378ac217d93cf83265e48b421c354673ad85', + 57372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2189f278f04c4de9f9431a28f93194162519190689718bdfd86c59e40f308ce7', + 57560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b76a7dacdd59bddcd4945ec27fdf05a1500d69736cfe4bf87cea4226152549ae', + 57796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de36e117b307c49e79c550cf81a3e25948da6843857824ec796d547d26df8e7d', + 57804, + ), + }, + 'HappyMonkey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5af93d359b23c917e397785896314b446c5df8e6e98ae6af67091f04cbcbcc2e', + 40080, + ), + }, + 'Harmattan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0bf39da3ce6e523e3740ab8a2d6e088fe15373a7a3d220539e15cf8bfbb8e02', + 532676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fddd5628f82dec20a9e8df3eeb4c9dc9bf77020328bea51399f255a5a45387a', + 538304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a800c9526465b4d62fe44dce1ed22ef8941861e68659327699ced2e58197a71', + 521644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e35ef88b618d610911dce129a33833eabd162760e0bd9863f2d2ddf4dfc4c5eb', + 518588, + ), + }, + 'HeadlandOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8b9589b5e7dc001f8b63c9485088e6f0d00919103b3e070846121894068ba69', + 69948, + ), + }, + 'HedvigLettersSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9efeea4c480a5b4891e664bbd21779888a6adf5565e2bf998f76d286b5b6c7eb', + 59064, + ), + }, + 'HedvigLettersSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc2bd65748b4b36ccac6e26da6e9f9b3a8effcf5b05f845c22f6d1b8b47e81f4', + 78620, + ), + }, + 'Heebo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f2bd19b1dae4afbdb451de49164785b1525f49a229a5cc9a3eda3ef05981a79', + 43612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '474fa80c8e32e84c25f840e86efc2287bd3d4e9af284f22f0fe534e0e2a55c0f', + 43952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b626a133c051b1b4673378435ab349e6304c982dc7202a5f6c3ff9d157d87598', + 43872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5ad27e32b0b8375c6f7f0efb4c09325c63c457e36e8350c91c1b3db3d6f6341', + 43932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4580df04bd7aa1cd9d3790e05a3c6cb29eb628ece907ad605e6a4ba6ba47588', + 44120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20aa79e4e306b445a57a31ad6c3c64d798f6abdbc425f49acd3afa91be97ef99', + 44284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e84471848710e4686f2013898addd97684e6f8a47a0f22b6fb13a4b573240b39', + 44280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1d8c438cf41e26c298c0f6478fad22f873288fe74d9637514d756396d0931bf', + 44504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a56e70d58c1c440804c371b66918b2effb16114004e81294c69c7f4d81d48b02', + 44604, + ), + }, + 'HennyPenny': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddc7bd467708dedc140e73c120ec3094a694edf4606260cd40cbb1fbc6d13d66', + 63600, + ), + }, + 'HeptaSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33fb9ab9a5cad07cb75cd9e7a4018f1567c1efebd75ec97e7f6b2448edb451e4', + 113036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bce7a064475e266309aecf85645b7ca999d04bc744a2c4040103fb688cd50e19', + 113244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3276462a6be8d9b0542c08722b3acb0092a5f3fdb62d05ce962b454d30393315', + 113596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75039b25045f681b31999ddbf6407cece42603aecd2841e071dbf67b2d6547bc', + 113432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b10ff15ccddc8b0aa630288edc72014b693cc7862a5f048982e565bac402b841', + 113424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c363855e4a9c349676f31488a87d94fdfa7d2f0c2854e90ee8b5c87a72e51443', + 115288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9f7659f6ffa6fb1b421c34510090cd1814b2f54d4aec904b00b73f0c71446522', + 116320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b274f0817571d7a98a7c35b13ecc98221f424b7252f8be8084c105e58095a86', + 116920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7665627760e90f62b51971f1c608b3fa84f92ed3d2848da087fcfb812db89cb0', + 116760, + ), + }, + 'HerrVonMuellerhoff': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b20ecd358f5cc5d290c38fee999f95431b137f38566a36b07514113a41c4078a', + 44664, + ), + }, + 'HiMelody': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6891c347248878bf2dfe4c0b2f35ead9c30c847376ae900796818c6811b57dd8', + 6090828, + ), + }, + 'HinaMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3cabe7eda9f23f5a7f611bd9cd2f86fc7d49bd4b74da688609142556c889898', + 6420156, + ), + }, + 'Hind': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e07502952df4199079d13a70e83cfb112095bd7632e59b1572a84b4cc7e45cbe', + 147696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ecb6de0b873be74e894300f83f58c8cd80e78c4d8f31a9581f2e967e70ea145e', + 147420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d2ea18948b8d0f5f3337b8f8fdc22d2106cd29736373a87b8495cfe8d7d74d7', + 146972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c38e015432ee4d57381acb623e1ca54741bbb909e1f2c23b1e345d5d48e3d74', + 146712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '359d67e947f891cae6b3273f484d6f856e368e69632bb5d8b129cb369d7ec537', + 145036, + ), + }, + 'HindGuntur': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'deec1522e2f4996983336e3c1e7ac6af5d373225e2ff6ebd010dc254986acb21', + 171180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3eb6578adc7073c5e9065ec58142de8c6cabc608df6d44ff83fa452ff6f23f6', + 170304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db435cd8281332e45a9affc3c32002d82c0ad12116aec8ab13a3ea0efacf67ba', + 169188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0ff9e0af8085c1a32d001f7331ef972f25bf046d633fa0601c0f75bcc8a5a61', + 167984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'face5aeab48ef0df23da3e5fbe42af8827a98165968e72a9d79a644c929abe06', + 167744, + ), + }, + 'HindMadurai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eaca7a5e03fa5042aef4296db9a8cb85ea839abf9e4d0e43d6c3817597cf90be', + 66304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '667d099c0195b0ff404e03fd1f369295327d5ff209a685add3a3dd49d5697e2f', + 65768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d3c0530730742f4ee3b8b84c4d7b62bd641717afc8eb99b1bb9b6135a74270b', + 66032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5291e0a0049bf783717ec02a73670aa7c9b32c00e5c79836b56a95dd14940a4', + 66012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6107706177114f1c9ed89d2bf2ff9ebe5a4c7b9f4875d399e6d315f37768fc6d', + 65076, + ), + }, + 'HindMysuru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7168a58d4576fb3b0b340ec0b3932fa0b9ebc2ba32a92e2df031b54628c580e', + 131736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88b1edc595b675090c8e437de5abbd4a3a4b4cad14d22e887df073bc017d7e3c', + 130800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6be1004f59475c29a0bc06c7a26124836a2d6ef374ed2eff8b015919f6ca5fb', + 130368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a365eac88d5033ac352e97158d7b21612a400f9f547c6951a449ffecc2741329', + 129732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b4a580ca879e71c7bee921a894c7288890496debe5cc6f4dffbb8317d1d124b', + 128604, + ), + }, + 'HindSiliguri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94f9b316e10f384b8c44d849867775a13adef55edb062fb8fcf4d286d627477b', + 133748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0b3dbfdb608ecafcc3e26664caa80e43f10883cba1d555ae1345d34274a3cba', + 133156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20269ea55ee345c174ebd3dc2921862127325828f58b5ebc40e3993a934b8370', + 132748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23659441985c1dceb66f3c01735cd6fc8824b1d33af58379f7145df0d036d94f', + 132772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca401a191fe958dac5ede527ab60e7f20377d92148c62bfa4148dd7d0c990682', + 131216, + ), + }, + 'HindVadodara': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2825236d0b694650c59e4ac7c147575255d93ef4b9678d0949c0f426e1606c7', + 129084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86e9bd456f90de75a16b93451071315f307310819da7a6427596eb1a209efe80', + 128784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03be3a08a80606054f8bfbda8305724f083b35c87b13d0d5d8cfcebfd80e51d6', + 128576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '220cae1c140df26e9d8acb715fef9b92ecf0f0ca7374923bf23760d45b8f4216', + 128044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1155a5dfdcba1dd4f07248479326f6ada40b98314ba9773c07f851aefe7750d2', + 126752, + ), + }, + 'HoltwoodOneSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2ad9261f3908bcd3c5d2e892fbce71fac9ce0ac88f2c2f33e7044ecc93388b1', + 37320, + ), + }, + 'HomemadeApple': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a2e9b2e6390fd42b70f39e4bddcb2ae8ba3a8ea361821350fc8550ae24c303e', + 108288, + ), + }, + 'Homenaje': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fb2f8a4033dc0c231fae02491a8bed181dd486ac82aa8f89d0213749a4e6624', + 19364, + ), + }, + 'Honk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7870386f44708c6870cd06494db0cae2c656b18348aaeddfc7737eac1bbc815', + 341532, + ), + }, + 'HostGrotesk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ec25b51a61fae891c39571b3aa35ad44ca3ef98201ffe1ad906db94524cddc1', + 55060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db8de0fe76f74a3d2f7bd5b6a982909a22d77a252bd6c436395ff1455e3841e3', + 55084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa55f8a453cad09482971222544793fdfae3574efb9f4c3ac2956736c590a892', + 55100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9934f051728ff6a87607a7687872b42f145010d2c712e08289879c11b4308aaf', + 55080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca8baac5088cd57fed4106f036d962bd77843cb8b0fc6ed949a5b890a58668f3', + 54988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23d29d2955ca3434d679038ebe2883686aae7a59f7d4fb2be2da3d72330a2b18', + 55056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d200b955146f1682633d360eb15efdd9163c0306c96e2b18501de63b2a7d198', + 56172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '26483899850abb64c323e427b6058eec3c171082afe45c512e56a40fbccb3118', + 56164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1104e5090d871983af403de90dee175312e966fa723f7544ce347a831bab49b7', + 56296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e0253cdc0f407c35c799a4c49a2b4142c7b10f6c1529156a084c3ab6e91acd77', + 56308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5b6c2cbf64100cabf40b8820b35e89155b95b3793b3f7435946f529398659160', + 56208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3fc180de6e3a950a60dbb750778a98e63415fa6dde24949ac4055cc7470aa588', + 56284, + ), + }, + 'Hubballi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51312bc87cbd68aa99f90034cba2f44338782e146d5439b3af11d4e9fca67552', + 133764, + ), + }, + 'HubotSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '029c9e0c24dd38fc852ad5f5aef3cf190adfb34080c2b9f90dcf37f32e24a667', + 77936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4734522bea9db22147109a7351124a6b7cbf3b995a6e9785b96e30befe4f8ac0', + 77936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '086485fe05553bd507a24b4726b61af86933362cefc2e09261dcd25db68cfe47', + 77876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d5f49facbf349d2ab8c624c1a4d2221b04cc9de7bf62811f5f742bf7d2e912c', + 77912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a91014c312ba3e1a1d757e6d0e67acc4f178cc57bbb1ab17f7d14c34ab4db65', + 77892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fdc0ee4792cc540c1b48746b16265888c9b0fb08abab6354e7d0ae5a1042fe8', + 77788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '686fb14d95fc1c7c36b448fe1fd93f928b3c49f3a9e47f4f261f7072248b7a8b', + 77856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf338a420a2ecadb847c8a157d6dcb948f130e8a3d5bb9ff34ed5819c0d949d2', + 77844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '180c77cbd58d6a7ae7193bea1575e05a696c43a7021aa2a629dc7b994c6b447e', + 79632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5949c26a4cd669df8a773081f9922c347bd5e51265ec6efbee30caf5ffaa757', + 79596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '91b7590a71bfa77423c7aa974fbf39aaf267d67888c9e81e2fc42bb811be9658', + 79472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea2537323020e42ee130f0c6dc28b04e17fdae2ab913ba3b2532402dc02b1d9e', + 79584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2f5b0a2ab2304e706fd0dab53e3e238bf76fcf2b31be33f8bbed27cc1f8deab8', + 79576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69c3b4d44b22fe118847ef76ef19caeaa65d8f3c7126d45d81835e7a5f900de8', + 79456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f964dbc1bc32452eade8ddc79c51045533e3caf9503e01a8d3c57168df56fe8', + 79596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9e8315d259ee7ce9c2205ff59359525d49f831576bb88a14c879b0a3dbfc2f05', + 79484, + ), + }, + 'Huninn': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f361b882f45d5ecf1162b1726d4fd1148821368f25e63934bf989bf57cf0225', + 4663064, + ), + }, + 'Hurricane': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '411ec57a95540aadba8923d60f791659535b034a8f81f1d3fbb0e6c2525ec932', + 123112, + ), + }, + 'IBMPlexMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28b47d79415935b4eb7e21b4ab6567b49ec8c5654769456ec98e2193e8998fdd', + 77016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '29dc9c11fa19d718d763725de56a911b985eec34ff0ce19cbdfbe81438f1f5f4', + 83652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '777e2bfad74ee25085099fe319dec1ab75fa07afe1fd95511691a7d785e5e76a', + 76620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dec2d3b718edf9c988b7bc4bf9cc2ff98c0a73b3704321db9bd77c8c10da9f57', + 83624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb12a959f0a3b900dfb41e969e19ea06d7fd0e546d20848c74d7c0a09bb9fcc5', + 76372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fcb360ec811b8ad1bcbcaa48f01ac3b20321699d2c2a44ac2061d61f1856356f', + 83248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd37b0be393abb9e88603a9493e97d0ca660146b93fad3897d22358f3a93e7a05', + 76988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '129654d831d41d7c91e3068d3a41048ac376d3268e6fa37d70a32655f80b28df', + 84068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccde6e24d2f07f518ab9860bb438d768dade104dd9f4a5e8c7442885ff4bad81', + 76544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c4d06a8e36553d03d27fce5ed3e3190fffb6f1809b94cafcb51831e43550b5c', + 83312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f22d51089f8e130bf17474587afa91909c802be2733c8f6e79f33eb7318b2d77', + 76516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c53a0ff962598476827ac59e2871f2edc365bbf0bf021477f6adea969df952b6', + 82964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '655d8d7800662579d0ec6d4b4cfdffd1f647a5f24575f42d4bb0b295f0dd8779', + 76560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dc02aef1a17967582c7dc41541adcfa296295b0b2419a6a94e018112c560a30a', + 83348, + ), + }, + 'IBMPlexSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07b15b8cae648cc63e48778860d98ed956c10f6557c8cdbe8fb5ab1c2f80e5c4', + 183544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33603895dbda8df0109110667c86ea605ecc2365ed63c45f0edd9fe4f087e5bc', + 183776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4406bd542f87f6b8a4bf1e52c1436211324a8c461ae78052cecfda41e393306e', + 183664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12e6996253206716d0cd23a5d26cec773a78f7a3a0df93f832e0b3754c1e39b2', + 183172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45ab33487e9f920313400178cb0bd4540eddadc23a294ad3fe47a0d5e41ff644', + 183204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7778c3dcd29c41c4da33221bac3951b0f0882b94ba55cecc17a1a42bb047060a', + 183212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa5026e2a6226c14976279a67ebbbf0d78caba2fa3fe242e42d83fc6010b28a8', + 183148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bff5ab424d2fba588b7f93a42c529301affa6ecf888ed1c56c22dda3f5b9e142', + 198752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1ac25d5b78c92acf767a1d973313a2f0e19d82247e5866d41abac5d90e510a81', + 198836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '44df52b9a0b72eb035bea9461a5b54741e2b3dbf5372a11ab082067b2b07020f', + 198720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9eab3cf3d7efaf9ae0e734a905cea8c978e9352e6223f212ab15df1fb8c73239', + 198148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '005b9ac7334e6b59b4ad788c696e50f4f29e134d3c12c323fd928f56e4f720b2', + 198308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef07254ab181bb8aa149bf545a8f5197f1ae37f0bc9962c2a6a2292a2393ef38', + 198328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e0386b71c72ad4e0eb8d117e19ef5b45857b367d26ba5ccd22c064fddc08f249', + 198152, + ), + }, + 'IBMPlexSansArabic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e37b91e94bc50eaa90a97067251c3ed1a0f6f3330c2f8c0325d0bd78f2fc472', + 160564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5118fbc3904b3db03d3c8dcd6fb0dbd0972b897a10906a540c8f1ecc5bd7ca63', + 161740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0712bcecba66b2dd8d9affb6ca2a12d0d62c8f7d96776030a03c4f000027b655', + 161740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1dd5b8658755ac24816510d55a5fb695a1afb4501670975bf25b280c26374402', + 159912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '562c4db5603ce976913e221339e8fcc9627254bf8c818bb88a9ed1a7aa03c5a0', + 164208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c07e6cd6d0f3e35d2679c155d3c259e7bddfee21549f01a0b09d35b4d7a39c6', + 164284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7147bc82b252b7ab0e19d656da55d46cace739e45096c9d9d4fe23616216e77b', + 163188, + ), + }, + 'IBMPlexSansDevanagari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26222a55c7b54eac8ac00c38d24e96a071fab7e14541604e9b5e33ff787e193a', + 227304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbf44e48e794bdeebcfb861d82fd798db6f565051bb5cdb93533c8cb5da50c5b', + 226388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9ef7da21ecc648fa076838dddba8c12c3768611a77e002f8efe8bbb2f96c6e6', + 224040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd96a2c6e113335c648e1ca5430523a1a6596ad2083defa614bd3c8e6306b406', + 216932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a11e01c2c0f31dc05cc65b4d8c2ccbd45df4f6ff1016d3bd74be4f4dcf4d4c5', + 216368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a88a15fd208a69c9ddff139b7219462c90a687150256c39585bca093a206b2c', + 215880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3324e230bdaeb5f3f1aca8c9285c08a2dc50a242c95aaf893c54ee49f3d8f136', + 207516, + ), + }, + 'IBMPlexSansHebrew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30122c6b872720d71fb51f29348770366c2f7f8b6496a968001ce05b78e94183', + 59468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4cc99f13a204792a9f798157261ca14fbdc712ecfc7562a7568382519462e80', + 59856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4828f83e175919f5091ea5b1dd24c8f95af671c472e78b40e2eed1de7347eb00', + 59568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87e21e7a79edfd25bc9d0e67485b6fb6feb82e1a01e5654898b4825a07bcc914', + 58472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0362e334f6824d2e9e305203cd83f64672618eec48bd646e2c483dc16ff1227a', + 59172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9ae6f4f770e9d1bd3709f54ad07a39428d05a046cc096975e26e7f3ca118c5e', + 59032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6a79c82f40d4b5954ed9f6cf885a337dede77b13ea3900bdf74be52b75ec262', + 58976, + ), + }, + 'IBMPlexSansJP': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b17d085a512d6e04ed9b6687370942990443789c8d8d22e41cde833a316a1297', + 2189584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5e09934848baaa404b8fc49e0019a8701f85aaa14eec67958a68d847ac36e72', + 2184640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b81e7708451883ee7ad20cef0c0585425ea5e2b7f70a13fb892ec157dc9b8fa', + 2177748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b3457392bed0cf794d7b80b7118b33d6d27f79da8229cf5af99a0647e3e20b7', + 2168884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1b2643286719ebc0d49fe9764b227eb0664df246a1da217b0ecbd30748c6b3c', + 2162464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee2f238ef09c88c53402be8702809829ff3c8fac1f159fc2bdecc9268b7c2806', + 2161988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53efa9a8071ef41198f33c6d5bfa64037ef091ec386db6a078ae6c5b73537b99', + 2163876, + ), + }, + 'IBMPlexSansKR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef3327df28bb5ee46c14c7504ecfa8ef33690f8416bc5db691e7c0a369729e1c', + 2508648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c2c1d397ff887a625237a52846d79ab559db693a6cd6e7e45d827533522ec40', + 2466112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '982adf4e620d09aa395ba00adf471151216f73858fa703758d74a57e717d76c7', + 2443504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62934a5c2c8c3885a168db3fb82e11958dc90a6b54d2a337a19ec6a9a1e9c02a', + 2430632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3025e6ce7610a97034fd9409aa923e5996f02caee2740097777f05d222738cc', + 2414528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a1334096562f30411c060d6d7088003d47dcd767b6e74ff38877e489d3a455f', + 2406700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce05da3cfe2e05a2880f55ba16a02ab98c0f779c5bf26b21651711474d1e74a2', + 2402612, + ), + }, + 'IBMPlexSansThai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b2456a4769be63a1b5eff85a7cd768add99d5290434ea9cd5161409d70356d7', + 67408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '565023bdfb445ee80222544aa1e381b49fc804e71b104837a77d4c653eeec4f8', + 67492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9f367ffb205bffe3ae7ce91f6dff5aa5778f585416f586b664bf7cbafb08885', + 67216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22238e186615af34f67cff11e61e95da68362e18dc0e1d99f028486614aa7c64', + 66592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02fd9c13c1e5542ad1817f4775b4b91dc289bfd1140d3172105c2938c968e085', + 66736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd6ce03777efde74303c7a41c3e3b59102290f45ab277d5108213f2338e634db6', + 66628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '494e80ca0d93bcfce180e8624d845d48cf280aceb16026c4e6881439f41b3e1e', + 66684, + ), + }, + 'IBMPlexSansThaiLooped': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eab0601f2caf87105bc0f5418754f8c2e60a8b3459cb424ebe5c596fe3ca2e48', + 74032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9143ac0f70df21bc369b07cba49b1b164309aa283ee40b8d6a07bcc6a8a8ce1b', + 74012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34fda694e49fe88f8a5f9698139bbdf75c08992b3d178dad9576345ca05dd393', + 73480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38ff63b8eb381edbe5c8e85a1e58241150fb82cc286c8dfdb67a4d5c0ac89a03', + 72772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35794e4b699a2ae1b5c7f64f9e17ca2c4b08bb9c948841b4b948a4511b2db4d5', + 72656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '311eca0075cd9e4df58d19f2e54b4e4564324504f80378feddea98335f7df2b6', + 72416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fef444cc03938e55d94789d352a57acf9d26aaf46d4b9b0aec3922e2140b19f', + 72352, + ), + }, + 'IBMPlexSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '248e9035e1a0db5130f0786217c4b1acc2b4a541e9a2e407cac4f845efb3c5f4', + 106116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e50dee63d411e13edb89c6c1e999434a14ee50a3048fc21cd3293e84f427d40e', + 115664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b47641aa70f00ffb63b6fd7cb92a98ebe25db8e1e8db5d0f7168eb63c3eff89b', + 108800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6bff065a5f4a402b6830f1ba5e11f59cd8ed8feb453a4a59fd9e4f2c153e3529', + 119692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '295e45ac55603ae0d5a8a34644b1f71e767c7f086d61c1a9edb632d3af3f12ea', + 108764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '089c077ef33bcbdde66514513cabcc5b958ae56376b658115bbd83f57e33ac88', + 119388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0dda69d56db0ec73d8d03f3930be13b4968727196cddf5b8ec43c39be19794c', + 108524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '572060fcbaff9f13f3d8f73f82bd27654697cd58f987ac4773fa61b19000c05d', + 119452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1451fea7730c65b2e013f95af33d292f8e730d5e7d5f9ebb9722f1dd927be7a', + 109216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5efda0096d5bc0993adcda33e1381c34e4e5cb72c5ddd02cf56cd950b9c19636', + 119388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92909831461cb5d57564fb95050f6e21c5913e1ca47b420b390d5d4f69f28bfa', + 109120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '39d5bcc5f3ed22fa65bd00e10d56745e806505144dcadb0d6761dc688831325f', + 119496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '683da1e76d8705d9390db5ca35b26a0eeee3e5628169c0352fe7333c08239234', + 107704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dcc61b858f184d8ee3aba8cda03c193ea5e22f8e04a9b771c013466fb73e505c', + 118364, + ), + }, + 'IMFellDWPica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9459af8e5add9e53e1987687ba7b01d4ff12a705be7880f7b82ebe2690a496ed', + 211184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec84e5dd06394d3d71cbb9f538eba396d80e6b852e947e21ecbf22ad16b9bd22', + 238596, + ), + }, + 'IMFellDWPicaSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b42029cd8d085bda39149c65bee3c543027c09b57d91fff0f599214f8ac736da', + 192592, + ), + }, + 'IMFellDoublePica': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24def9ccd9a7f48cae0a5c65904e793384586acd5ca5626d6df5445f95464761', + 205192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8b51629cdc58e927d88b04f67541e2a217d9938695be6446346a3bda587169c7', + 249120, + ), + }, + 'IMFellDoublePicaSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32f5223943f05df18b728db045334bd10f22c3e732251ee4add3e535c480870e', + 191624, + ), + }, + 'IMFellEnglish': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6f6962a9871041173c353a1465bf991162134e91a8ebc1c0f73295766176932', + 189680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a88c22cd52b1985e7d3a77ad3683feccc9dd2a8cdf2935bedb3fce32b333c779', + 197028, + ), + }, + 'IMFellEnglishSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '895adc2b5463f96c9d617d63ed7cb703b00efa1f2039767aa24d97a12f137d36', + 179108, + ), + }, + 'IMFellFrenchCanon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0628eb90b4ea261f205fcb44d0ba858917f4ab4bccead4e82d0ad216b60eca5a', + 140704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '469413b568988dd75baf5cd92c8d8e7488e3f3b3e4f6a320adec03a44796fb3b', + 152844, + ), + }, + 'IMFellFrenchCanonSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc3444ab98e1b881f5ebf3e55d015850337c9f33cb0797dd1575471c2c506ad7', + 131564, + ), + }, + 'IMFellGreatPrimer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '370ece4793dbcaf0eee325718a3d90055b03dab7fb30cf4e28209d1923421e8f', + 210524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '05fa578ead197e918f537cd79fb0d944884b6364bc9c47c52a5838e1838d02c3', + 243096, + ), + }, + 'IMFellGreatPrimerSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e08827d0ff29ee91c0e4e486b583ffefafb018e6193eb83f130c1832b4379878', + 198108, + ), + }, + 'Iansui': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54582dc5a36f7f793c7a2cf7bcc59e8d354120ebfc10724310934b598f7c8bc1', + 8561724, + ), + }, + 'IbarraRealNova': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dbd281e257d4c113e6afb92a17863c0dbd22b780296c359e2cc0f7b28d1b106', + 54900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dca9e0d59da9a625706cb21d150c87c485632de3d6a008b6f724d39f996dafcb', + 54908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16987773001b8f2336bf1ab0aee945bcc8c47fb9a2d9f1e171249b5e81f7decf', + 54960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3a0c6ee5175df3fdb7864eaa0ce1c08566de76eb1830b6a64613de6dd556cc2', + 54864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e595a9abdee462527c8c8e7592957847db94ab9cf20a171ffcbc2f8db1477245', + 59332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6e4ec29af57ba34c4c996d53639ea477b245d5df40a60175bdc125d11b19f045', + 59460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fc39ccac213d5166fca971404542caab49ece842f084933faaa421124aa36086', + 59528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0de66fa2cb647376c116aed5783a20f77a31bc1d84a1f5122e485feb381066b0', + 59396, + ), + }, + 'Iceberg': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '071ae00cb407c3955eb2df84105d369107cd729f43a9d9c66b103b25fa3c0ad4', + 13156, + ), + }, + 'Iceland': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60c31b972ef0cd764b1b88e2e0f55b295f412ced49e5e456522b490f02493f2b', + 14276, + ), + }, + 'Imbue': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8273b37d30c60ff77298a7da1dc4741b304314d0e06ac3177e93ffacbd142d63', + 65188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '991a62fc8864b87ba9c72abf0af20e6bd8229ab0dc9a1699185e16c8a048f684', + 65484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18361c1f8b3aa4c34ae0d5d44d73e4cdff2b70542865791484362e11ef6fe108', + 65460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e37a7ab4faf55413cde37ab3cc015170b10b15e8fc8bcb20f0afbe3ddf7cd08d', + 65520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '119d87943cd9b6f7efdfc58d53c7e9f0556b7ede2e5cc0ac4f2d149e7fbbd2ca', + 65568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98843eb4d598933ad94691b1de5e7fd9b685fbc1b5ef3c2aaf0f3d8b67775574', + 65660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b2af4f90594b792e20c7c8f4035b7ed092f48ef4ebe37a9dc58b87e49c8ad2b', + 65624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '328cfe1ab07c456a0aacb8d3a3223b7d7e8c68936359a8eff6ba41b148d23683', + 65772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96460e232ce98bf8e8e575daf7bbf36d55db2d929c1e425946236311784b3a3d', + 65692, + ), + }, + 'ImperialScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '020e346d04fc0978efb3f7f3b86b5ceda29ff1435d8cf6914d2c093e992550c9', + 98212, + ), + }, + 'Imprima': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7582f8cc65dd58fddc00fc46eb74320836aa9fc5c649f7b8c1b10301d5f2324c', + 34796, + ), + }, + 'InclusiveSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e2a45a94ddd2a8a6ba92970bdac39af5b63d0d78562f41632d01a17b7626415', + 57768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cce36cf40e1bb08a0e5c00cabb4f0fe366e221a5e1665767a51916595c5357ac', + 57828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5065e58f872e6969f048cc55c612c4db1c9168175f6ac7564344b0f62949ae4', + 57884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '771b5240344f318763967be8ca3316ed4ea1b942e80a0b34f5584214e99f2f92', + 58480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21dfcf4d614633ac41a41ee42601b94c322e72721c2f6e1cd79282204de0df1d', + 58376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8bc6ad2fa76b19c133eadb7a862b0dd53967251490e341d75ff7cb1c2955f0d5', + 59008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bd80eaac97371dd06d9c77203e5b371b70132720329be20a93279cc6139c87b4', + 58984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'be1ec72cd8686ce362e2b27945c615ffa688e801564a5f3ed8b256322c18b423', + 59108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '98127472210a04e672925f194e0f77167e8838eda0db4105d7b0078ebaa5c8a0', + 59728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f5e98fe1afac684391043f9837a632298b4f933393053b4602780876a469c197', + 59552, + ), + }, + 'Inconsolata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '749a2a168664d2c866b74be29fa0c412d185951ff862e97b5c36546bb54a9c39', + 73192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2005290f47c080725f69856b1abc72841fab6fafd7118e8c5b3bd0054f1833d', + 73032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0aefc01334c1de50242833a57c72be0e158a8723411b85e03e9e7a2aa692228', + 72952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad06d812cd5af85391b286c350331b454abaa9d5e4ebc9d1a9c5c2c1bb071bd6', + 73388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25f8723af5de530f4d3cff308e5fb09baa00d4cf88fbc2805c6d6a47bb6a2f8a', + 73464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa95fcf06de211a7ba3fdcf3bc1e3880ea306bd2c654c44dd2c72dde8d66d603', + 73336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da7e66bd81c62a97c9238dbf675184215514db2363e69ffced344c40c528ec18', + 73328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ff21c66ad0c1ccb7fd0c49a023308b2c65be37f745757a19becc2d1dfcf46dd', + 73120, + ), + }, + 'Inder': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1e9a9cbaf4f35975974799cba625a0b53fbcb12391b8132af214293c583ca34', + 28104, + ), + }, + 'IndieFlower': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c348c11a26f21a66feb698894e308102f3f5b7f6346757ecb868f86bff34dc4', + 45684, + ), + }, + 'IngridDarling': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f15f92b4d115f4f9ca194d043b0149516d0fb6971d8427188ac228215348648', + 101080, + ), + }, + 'Inika': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '591590272d7a6a314d2e3d1566d2fd5a394c7ebd85b475c6ba1467a8cc869649', + 37808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4e48713a4a046651e1d7f7c5e9c13bc3394458f739dd76c6532756aef042a0c', + 36444, + ), + }, + 'InknutAntiqua': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '445bfe575c4fcbdca87e6b173ba5cf2c139d7a507fdd17d7095a5cd5d1bf80b4', + 229632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '314758cfa26d9cb9c21e4fc3bd07b000e312508889499630ee8cd60c6d2fa801', + 226920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39c64c09acb683fb7278cb02bd946af1effab3eccb14d606c283d85dd8f6f3cc', + 227788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7e1b9b85ecb285143f253901051b1be03d5135655029a01f41a626c0a6018ff', + 227228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e0f978b0f07ca59f94cc424d7386a1d71dcf07f9d9aa72d3714144669441f02', + 224852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e38cd7dacfb4c3409c1fea0768090e56064d40395aa64d26a7600247d3de0ba5', + 223760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '906d89c5416eddf5ac4949a1efa4f56be7fa94f2c9a08a48294b589ac2def206', + 218860, + ), + }, + 'InriaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fa2920dc86903b45b3952a45c05fc28dea0fc6db884b1576a66a2c95e57ebca', + 46092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '87ddc2795ba33c1e79863e56fe6e6208fb4b3203fbdaa702a82d2d9ce45c25f4', + 47432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01ffd184df52e6206425a49493d56e77c20f126b8ad830f6012a8cfa106b8338', + 46304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aedd519d11b9c5745edc55510d04ae7812cbd077b2ebcd9d2f111882af589ac1', + 47656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b685a418721d1176c3a863c44e6aac1d2f645c78dae0a8553a935c5871006c54', + 45656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a0cfddc548be8b99cd2e50196f8f6fb1f10493c1b2544728aa3ea74998749f6', + 47312, + ), + }, + 'InriaSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c71d97049494c7880807f46681a338152ab24d021cbc371eedc8193d09260368', + 56092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd31743ddd53566587ec2a63813d3e4c65fa00d3a7314c3de15fe9967568eb9b7', + 55824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c81112820ed934a9056f6aeb996eeb921353c22508b9345182e3fd0bd655f47', + 56316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '36a4f48f355d72f4703150dce94e8c1964d8072bac0fcb69ad36c15cbd54e730', + 55980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab64b8bc9ef6acb19c5909aa402a5ca8095d700b63f53750f13fec024a366b60', + 56136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f7bbb9fc760b8f2d738fa41f84e5f315175e8c3861646a42e7e3129ceb6e1f5a', + 55908, + ), + }, + 'Inspiration': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab5c709999bba4b6f962fdddaf18942559aafd79ca255c16ebbaa69b7f17bb24', + 105024, + ), + }, + 'InstrumentSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0d636084c04969c1f0ebde2187f920cce7c21fcb58aa2a512c4fb0a79b518b4', + 48592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f1dc3bbee47afef26069635d4bd6b05e1ded803508d4adf02417cb74569c8d2', + 48708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c750849900ffada1e52e2ea9fb58316e9479d0c2decb69bd0c45aa5f27a5b318', + 48708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '472225de858ea55c07a28b7730cce5104b0c9d32d5599d916e9676243ab46dd2', + 48528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75b6bf1697b636982209f2bb51b1ffebe96b043e14f56d5c109c6a9c1884ab8f', + 50020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '421fb175e91a8fc5718842e753aff667481a30973d25ed925f82a01342c9e5a3', + 50204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ef583cc282ca4a958244d979fcf01131b4795afb35fe22d9259093d3d355bbf', + 50168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'deb338669d6ff1390f08393bac2b49de889d0275709134d744498616f1212e36', + 50028, + ), + }, + 'InstrumentSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee7535ec55e3f48b913d66868731b3b35df0800e16d8f8ea95d3a991b71c74d7', + 48340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c05dead00e34a309cdacba455105ea12c69a7193b50ff438e518f22aa530cb03', + 47920, + ), + }, + 'IntelOneMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87fa303ced89f7baf2b19ff26dae83c9b086d4b6d5dfa2e429eeb53b1c29ccc6', + 58780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b009a08e7bd9f3493b0d0f60ce029eeec0eac92175a487ec72b7afe476cf0d6a', + 60864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '297ea2abd9954ad51db112ec4a52c675f9b50b181a3fe7b31c989e6628d72420', + 58632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '88a81ca6fdf2928fbea394723352283dd4e195673038204884017ce0b7d1d673', + 60596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b97f5415b8b4b7063814ae5d486cc312caf4d35e7fdd73ad286e7e4c5cf7125', + 58260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'be8a98b96f38bf802c24f975a78bfc6c9cd81dbbf35cc6aa330ec618733b9a6b', + 60304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '546dcfb41cd14a19bbe7cf97b6d51a66eab95e2c5fd8d6e41d45b0aff63278b5', + 58308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c873754af7deb6855adee3f87ea29a621bf8d5d4388097c70bba0e59e463d9d7', + 60344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c527bbfdc117cad2b071ebd75b2d4234ad5c3deed89509ce968a4c7a447315ba', + 58280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e833db7126a955b42c7cb15298c88b41efd73ebbe8b9a668acdc524b59caebcc', + 60284, + ), + }, + 'Inter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36201b34de0f9164edaadfa3854a84e0e4e6184588a03e775ef0ac0a24783139', + 325004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fbc12952c229be983a58502c92fc6bcde626d86d490cc71d980de52e5e975b1', + 325580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8641cf8fd5e04d0f94062395a2d1ab1ba5467831af690069e8f3ea0efe640d70', + 325724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15b294b67f2f8bbc04d990023ef4aec66502b87dc9040d84abe5f896ccb693de', + 324796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36a36ff7ac46dc2aeceac3a80a87a67e7b844b8fc936699259aac8fba9bcf734', + 325280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '334bb2c51aeba5f566abac8d03a7e75ab3234d6926b52e92a85dc704129258b5', + 326024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76121a34a606cc8a0e1ef5a47d2b9ba9678c41f5c852d63eb28f62069373bfad', + 326444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6af943899936fd3fd15a5889db4a384cec311c9bfe33d74bcfd3e0ae56f1b1d1', + 327300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd892b18d080d1200aa41ea8851da84dd8c24c33843d491fa034ac57b16f22973', + 327236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2337920eef2532d7ee1b86c084df8282c26c5d02be5f2ab0d019eb4b32aacdc8', + 329100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a87b13dcc6b25a8b0aae8f6bafa9937b25a7f8cf964234077d09c71e4d9324c2', + 329368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c5261dd4a04dd4db44151b40873e9c3e4b430e8c24fe1c644096299eaa02a055', + 329188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0e6e7a16caca2f42fb4966bf550abe48a84dc8de32d326797c8c03e6357c0133', + 328228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f84b48a486d84347767cb5ece2e783df7ebe8125afad8766bbf2e37a1d6f229', + 328740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '177d819b8ba335a1bf59f59e34a53d679c0f755166f8afd396ade32048b36bbf', + 329596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cf34025c1822d7ccfe8836913810b34a92a3c41417a24c9aa5bac8dd717e08ea', + 330108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e5337853143e2863cc03cc02bcb8f9ae538ffcfb7b839e54825631133b5e66b1', + 330996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ebf63e7eba6963dbe2020d1eb047760d6af1388cfda2bb14a3f2f8cc72427478', + 331020, + ), + }, + 'InterTight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f58300df80a35b5826acee76f5ad647a63e8a7d85de480ab8fbfe65b903f44d0', + 298728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '895efa80b1eedc9c96bcc33af39d0de3441db7ff431f8255983904817a64d1b5', + 299044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fded91ef99068b2039eee1acbf48d0695996f58310baf319dec588c208d276d', + 298696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5870f2b8371ba9960dc77dfa37e120bad10ebc1df99c7c599a45cec88878030', + 298236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92876967545f89e11170e78cddb26b49351f11041f1732bb06f03bf057cefb58', + 301448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d0fbc342424a4a311190f0c4a672e7c48fb4ec03a750f4d65ed6ce4c6467cee', + 302188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e25f240753c06659b0e998b1823d1a50a1349d2112de8aceeffb438dfd03ca8', + 302784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68ed7feb2c06560b6377186a2f931b3f284d07a74b4ba50b20538fc264dac1a2', + 303844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad14ebe8d9a9e36df0dd02f009b7fe245630f290748c226b5194ced07ead2365', + 303784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8e108cffaca4cedf4b7059f029bfb94171b069d54e6d65bc98912b93613339c5', + 305140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5cfc2a35b4c552386314566a9d347da86ad443393efb974508b73a3ef1764a8d', + 305556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '20b77d07a611ecbb7a1bcf788e334aee9aeec1e789a60efd10826e13f8045390', + 305296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '203dd6923e9debedef46d85035097f853c4c2382188ba8ba727c1adba929d376', + 304804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '12b6108a3aab549a52b9948dc3ba6132f28653e3378e5c552b3c209099b348b3', + 308056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '76c454283fe641ff11d30e1ff340c2bcbb7dc2aa9fa291dcc13dca950a466015', + 308804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4a6f44a004898ef67dda4f9ba341dc42e5ba9bc5c9435f8e7d420f1c652a0fc9', + 309304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db0ba6ce8accf41c10715be391e9858ebf47a19f9980be8f9e769dccf31df57c', + 310196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '362d4f14897417aea353eb43be7bd3df30a27377407e1644ba32a4fec7651a8a', + 310204, + ), + }, + 'IrishGrover': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c45cde9746bdc3f9c99497d67a5cc07d017351d00e1f1435fce5d56a92011667', + 50660, + ), + }, + 'IslandMoments': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5723b982bedfec24e6b21580309d97b0871fdbd86b2859aab0a835ef28fa35b6', + 369664, + ), + }, + 'IstokWeb': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da65d0808e72d7f8305f3cdf14854b27fab7eb564a58cb79dcd3e5548e55047e', + 131980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cab6e7fce689e3aaaa23f9b7a3198d44f94dcfc3457e7146a0d230a2668fc37b', + 85944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76af307f7639549f56107e9930ff08f6abbd8aa008c13562df811ebd202f9ab3', + 90304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '45a20a7ffb42444f89c5fa1c1d9ca8d0d918903352bca0d084ec52af8ba4a7e0', + 85972, + ), + }, + 'Italiana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bdff8035423ba170564235ef5ca38132c5247496ba27877652d9babe096b2af', + 26660, + ), + }, + 'Italianno': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53b4aedbfd782c2be19b7144790babb5f65c78a9985fcf0533fdab1db1736037', + 92212, + ), + }, + 'Itim': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8822fb9055096918b3b97c47f55481b7f8b0876adec03de80bd5cbec9d2f6e5a', + 234800, + ), + }, + 'Jacquard12': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de0fb65cbc17f437097eec57b449a6448affb5f3a8960d55b013d4d1cd968b6d', + 50576, + ), + }, + 'Jacquard12Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a2780f4beb61b398c4040aa719592c4297d04792a048e2e89f3fde06a5b2f20', + 580008, + ), + }, + 'Jacquard24': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '835d4546fe5f31962dce7f25efcc0dab6ad4f4151c211096baf9dc6def403a30', + 70312, + ), + }, + 'Jacquard24Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b39b1b259c34ed183f713922e80a2603efe68dd23429da42072b3a0aa1922e53', + 2236488, + ), + }, + 'JacquardaBastarda9': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af2253c326c6bd83c57a86e1dd39b2e23448cc12d542df805df4fdcfb96e4baa', + 50400, + ), + }, + 'JacquardaBastarda9Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88a841c38c7041eff882967366065cc76082a449cb3b8014085cf8af8f8a6b1d', + 385748, + ), + }, + 'JacquesFrancois': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b670b2f5b6aa58a881a0f54e567661bf3e070755aaacfc428fbd83ea86a9aa7b', + 28380, + ), + }, + 'JacquesFrancoisShadow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a1af2fbc45be324624088464f6c17bba818083a7f63ba6a60dc862ff88ac587', + 40580, + ), + }, + 'Jaini': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf6e9eed88f53dd2f19bf53366c74547ef7822c1517f836c4bcf1c6dbf32494d', + 447920, + ), + }, + 'JainiPurva': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c7d19b1d9bfb4ccc3dfe2280e386b093926a3a6344a76b1bfaad3da63e780efd', + 446764, + ), + }, + 'Jaldi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12abac1e0f832509d3b600f4e59cae7cd54af825e13e4fc53bde7c27604897c5', + 253920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfaf8f2f7bacf7f1befd209d79cb3d1a4b7f69882c870ab94227b9ee24b4ffc1', + 253608, + ), + }, + 'Jaro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '31d1e6d701b0ce299531d7aba0d3adc76dfb441651aa215b79f18bcb2cf49b98', + 96564, + ), + }, + 'Jersey10': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1975cc2eb1e44797920a6cdd42ade7445db27c20936b7294de8022cd4f3d68e8', + 33344, + ), + }, + 'Jersey10Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '521475ab4e352bb5ece9e1e21e02edf7ed8282e1e6df930afb5a6428dc976b63', + 383856, + ), + }, + 'Jersey15': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc590a7cb2d2cd2a08ce4b50b820767eaabe841c2d4fd6fc8231c5396bdc7fc6', + 38820, + ), + }, + 'Jersey15Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6009837e35501fa3678e7685527ead3ca855dd3dd98aa32cf7eb4dc1fda7d6a', + 783440, + ), + }, + 'Jersey20': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55c737df7d0450fac4e7fbea30b43c79ecd1f0502907662b63dc62ab5eb7bc63', + 42612, + ), + }, + 'Jersey20Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68897f02e3529283fd433ecb73f79bc7be661d5136d1dd1b23d15a27d3448910', + 1294232, + ), + }, + 'Jersey25': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8903d335ac3884387ad9e95003729d01ccaa3fb349402cf011c5da5c63af103f', + 47572, + ), + }, + 'Jersey25Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62268682dead055937f4e54f9de898fe0bc3b057342731ea521bcbcf0acb6d93', + 900048, + ), + }, + 'JetBrainsMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a44b1b4adc03c445877e325d57d0879cb22840ff640a40e6515be59c845b015', + 112252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9133ef0d504f0d80e5478902ee49e8f815ade6f5621fc89c5d6b9263549325d7', + 112340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0623d0562debca9e5d97996af1de5e98f672a20f2ee6085cec86cd6a77ec3595', + 112276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc34426314d00825ccc768a0c4b1178fe704f04bd947882ef10c2b71b7e355e7', + 112148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba10286722bd7dc2274b817575046e39ee816d6ba1e2ace48e22bcd068576941', + 112180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f833596d98e0e021dd43d993254658d0f32318f82f08afee0fc2e41c16ce9571', + 112136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b43a7dfebfb8816fb3859f6a7932824f594e115538ccd3f1ebc0ffc231b0acab', + 112068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98ea78a2337e1ef2274f247c857a63e40e975c6907a7baff9209033fa42142ac', + 112064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ad56d15852c41931b3640756ff18d55178c649d5fb55daf346a6831918c2c49', + 115164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '446787ed370004cd92c5043b5710c0fe7222eea7b1cce8d6a0d48008e8d4fa9b', + 115260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9002d02f91013aaf6ee54f0d03bde3e7d114597f49401b022c948ed5c4229702', + 115136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93f2f2d90bcd64e35bf1b7bd90149b168df727499667b5d2fde1758ed0297da5', + 114936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd33f9b81805d2984778b134e68b0a7f242a2d10a81fa5299b8c5081f3f7f0e83', + 115060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93aae81b1f8697f683ae32b65bacb4d74679d7a6a69357fbe45858aaa05db9b4', + 115004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a89a53b6ccccdfd6431441572e542901c7620e55d91f10d0eaa3fd39adaa3b83', + 114932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '013382b52ceb65565ac0ecf7dbaaf9369d29f4d4d3a8763439e3eb77c2b1009b', + 114984, + ), + }, + 'JimNightshade': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84557c14da7f79e9eff887a334d2eac1eebd13f7d5032fd6d47f70041de95679', + 151088, + ), + }, + 'Joan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9dae9653d3a7c1297ac6a3bdb83837e42555d9cf5b4755988726c0f0cb2e3c92', + 134032, + ), + }, + 'JockeyOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdc1e610717f762093f7cd0e236081f14475548ddbe5a48565215c06ca22f5db', + 41196, + ), + }, + 'JollyLodger': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bdf4d72aa30856fd762a33a0f13478d3dd4f6bbdd2418b0004ab793f9c0a9d8a', + 37760, + ), + }, + 'Jomhuria': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36bf869dd2181002473a46b33d7ae0fd898ea0cc867d78af9b5e9e14dde09787', + 159344, + ), + }, + 'Jomolhari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77a4946299c46124a673d10fd9d9c267a1604485caa7cc402654eff2d44227dd', + 1002668, + ), + }, + 'JosefinSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fbff1db6f1d613c45ffec339d81381b0394d0c0e8b53302e59eb4143a0a05fd', + 57624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e73af8fdac35f394aa4594a4cf7a7e22762ca7d43226acedf813c6ec2e6c159a', + 57796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed95acdb0e728ac8eecce072833e87d9764cf805c4a5de13bbea5992ded4f980', + 57820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f36ad3fad5a8bd34a1c7e47c266e1f0ce23df93131c02079ac7dad9abc8e7d6', + 57820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbf085d3ba22a3001db858d4f06c8ca6f75a7be5c47efbbca5b237e1d0e6f15b', + 57860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f2e625b905d42fd6e95e622810704c82a827f423674ffec5ec9c132a12caf88', + 57856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22b2e1768321c2385a2ce2311b935ea4dbf754492de6754ff0dcbca41640dc16', + 57696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a5e4dc04b6e8ff4acb725bd48ea0f455a4998d6f95886b2bfafe70a5e7d66a07', + 61840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '59621fc450f597bec66f779b65932956350a9e4c04e12d5b2a86fbc613d00c84', + 62116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '55d3bdbf386a6a04ae930854b67b5fb8b10200f53266ef68c511051848d90bbc', + 62076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '617c71c81b2b863bf7b93079496e8b99a3da62f234c7d4aba6311c44aa9f3acc', + 62076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '574743f1af3a2b81c7ec0d56dcad0f0859b0d32b77fd0c75c043a55dc4f11e7a', + 62228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b33c79da6fbc5a673bdb1324e35868d08cc3d46ba6a13d85d148329fae65b1cc', + 62240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e46b28542f37acb2f4b4ace85a4ee12fb4ec4956712b83d9e3148be45c6ac06b', + 61988, + ), + }, + 'JosefinSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06bc988fde9c4a2b0fe2f3f255524f7ca3c0db452d1c5eed1586798357747c05', + 28540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9b278386c1b2d5a6108b55919a593a9b17b05ffe15cbfab861539f41a1363c4', + 28612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c5619c49a927ba9bd3ea08df4a48572a9c277d326845d37e57f6b6a73dcb3ca', + 28584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18612e458ab1aa6334bbea03d1d083a9944d4429f40042b9cfc928bebdcc170b', + 28560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e6a9fd36374878731a9d94c9842bfe31bcb2dfaa78cf53a9a8c39a938c50178', + 28592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99ff60876e02c8dcf7b16e43f4025120f843075f04c5f33fe80493b79d8e663b', + 28588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a531988b19438c64afb18e596c24f855a1d715d48f8de72f0d7cda2ffecc17cf', + 28460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0fa559fe200475fa072d8ce0d66a2175c63ddddfb1e13e63fdc5325743938f4e', + 30004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '79711ff8ca9cd2736eff0a392bfa81bba3d650c48bf5f215344a03cc03099603', + 30100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '194ae13ba25ac5c76b09d9ffa7660201082d080cbbcaf41ed640e878354bad34', + 30056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '24354c99dc4aeff923c1eb79253f428d5268838004ed0028f0674264afaa8ca1', + 29948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a30919a4dced7c6531b39581a65fab718ff683c690ed6d5dd1ad7e3d1c943471', + 30052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00acb5cbb5c4aa40828ee03228969b9802d6d985457d8bf745e041038eb1550d', + 30052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '164520e00b5c2e7de195e967d5ce07580e62e23a1f3947caaf155e6dc54f6113', + 29896, + ), + }, + 'Jost': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b30eff2c49ee3dccff9b0286573ceaa478b51deb851ae088590124d4684b429', + 58840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a17ac02d3c92fa833a87a206922c87996312f8ee3f82f2d7593b78c1cc0a4067', + 58956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae46c497a9c94aec0a612cece190078cf1d0b673f04ceb7d57872734659e2699', + 58880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f4b7aeff86df1af62f055f480fb144ff53f962f36b25b5abda40408a504f27f', + 58772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0afbc6f642b5693d122e781289fe85ff5b40e37d54e898a7965c73f750b9e1c', + 58912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41893551a6ab5928d9975e229d1a38a4f2e8877e63d61404f7ad75efa9ab4c4f', + 58912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '318b25e4f3d442f7390ab9be04b6fb15c9157d43f18f9db5a168d2d97201bc63', + 58856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6dbe300cc90bf8909756238d40afcf323a6db07c4821b2445c903191564fc97', + 58976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd743a18112728088a0bbf15fb5a7cb3c06c16c854708eaef05aa1c6203a2b868', + 58948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'af675b6ebe3854611772e85915b80b654286c18d61743f3f0936ff2b255eb144', + 62244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '06197d4f1b483e5414fa26b6353671187ef1233bbd1484086b92a1582352e957', + 62464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '832d74f1f898163a9006c09e402d16864c8725a61b0264d9e8c91d3cbfeddcd6', + 62608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '88ab41b4c145df9f0745ae9aa15f4bfab8606d0ab34e8d5a54873c906df3d3f2', + 62556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f47282a7c2dd7830038b0d71e945437dd4819b6332117233e90070e451b44ac4', + 62676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '846661af2ceb60a5fed28158c0ade71b37387ed33164de723a4a874c7a644cc3', + 62668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4bfbf9acf4588d192e7522e695229f14de515130e982e3d1591efb61052ddbe8', + 62532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e9564c16c0f0b452b7d72ce7cf642d2df17f788487d3cb3abc9cfe9dd4be7dad', + 62640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fea3cd75073e909b0b100c8a49bd0ac9fd9519dea0a74c1fa21cfba9486551f2', + 62620, + ), + }, + 'JotiOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30281c7baceda0fa7e2aa5f556982adff7b9c7b9d5a9b6057cbb26bdbd8b4c04', + 39372, + ), + }, + 'Jua': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a083a3d69c7ef047913364d28dcd22c0f134b9e92800d60c31d065a6f8659b97', + 1366296, + ), + }, + 'Judson': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5eecc68dfe55442cf465997cdf24849a43b90ca8488ea904a1eb06a63072b353', + 117920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bffdc5c1c37ca45c58120e8a8fdb498defa04b41463b95f7dbfb95868f18dd4b', + 109656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cee65280d9927a4b87350de17e52c604f7eecc500c38ba1c17f205dc617ebf75', + 105276, + ), + }, + 'Julee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18488b678dfbc7c87ae8b791de8b73ec1afe621f7b216293549870383b0675c2', + 46704, + ), + }, + 'JuliusSansOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '897415897b595747828390f69e6e06501077ca7135b59c9fb621dd065c2c48eb', + 26852, + ), + }, + 'Junge': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db83a6b699c10c13904dcd9fcda2117be98dc0b684971a8d20cbe80c805d0d3d', + 24004, + ), + }, + 'Jura': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd85e1fd4aa3a53e6127d1f8f417e946138be1162960c32d69bca2002a63df842', + 150920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6a782d991f5c62b523b4744b6f38b41440aa04aca0a3b71a44a1427d8d70563', + 151188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e6d3642ce18a5df20c99537f50244ba91610c34a8482ff3827f4974a1849b5a', + 151100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa52d5815a8b83ddaf7808e18cc91c02718c69ea208bbb42007d04ab0a187f40', + 151120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07660df64e37877c06fadd82772bf0b384756862df4cb8803f650ffb0ccc5d9e', + 150808, + ), + }, + 'JustAnotherHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '606a90406a8a90f7f449a3bd3f189207c159b0563b714d3399f1868ae9dec7a5', + 75432, + ), + }, + 'JustMeAgainDownHere': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a13e9063e580502315001589c0f633efd97cfc7e5f5cf1f4f94b155300a7147', + 50340, + ), + }, + 'K2D': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03d04f680ab9aec61fa325a77850919a960cd20870e06e6d7c0d05a46e7829da', + 90944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8644c0791e1d1a109e3eba20851f6e7959bcfd4a67d8e8f1444daf5db66eec7d', + 94844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28f486663323e2bd208bf682f76178ff9978cb264b94f504a7e9dacb715ee335', + 90768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cd1de6f64dea5a641ffca2aa1c1e458e347908aa2da906c53c903381836e688c', + 94904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61b8b9f9390338f5092d2fa2324b2c99bbbd88cc1dbef00e664f391f10420ccb', + 90812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e2f02d1d18e989201213f5aed8d532ae491acc8e8a7449177a7c59078c30c95', + 94892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b074f3588be99d7cc2fbd25efac9933759917f08410a5ee3711f3c63d3de07bb', + 91056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f6fe24132b17c4b8279fbe2f9009fffadf230275f6961cf24a95c82c7dcce00d', + 95148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17eaf000ca0187a0eff7658641378d5664cd2ce06f8d6bef14b398af0b9653e3', + 91436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8b44f6ffad85082379da59b955a624e1f6aff2c8e8c379aa294f6aae0dd18063', + 95536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93e70d239d6f7d22aaf8b6d7214ded57337970072666adcd713308256e2627f7', + 91572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '05b63b4c7ac1dfd7728ce6e5900d298b3e71448d53de9806a829ee573e753c5f', + 95676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7d38bae129f3d636173c819f299a177459ef24dfa5acd1578310accd1e293ef', + 91580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69debd15379aa77b8540f28a78070ed9b269fd09fb1056d4c340249555cecceb', + 95776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3cf96c83585bc41b03dededa237eed03f51296a958a9fc62cba76f2126118dd3', + 91576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ca850f027c7553ae4382d9ffe1d8ea6b25f8faf5cc77138fc92e3cc040da225d', + 95872, + ), + }, + 'Kablammo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1748f1a6c555343d70382c4b80422351f382b168b4f9795ace4e021d4a3a54b5', + 584036, + ), + }, + 'Kadwa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ab069b0a11d306fd58fc76dc3de593a21b9339cf351df690c0dec91127cba25', + 148896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a4b7eb46a3a7911d6ce08d3695e689ec7a48349be61d1443c2991aab12772d2', + 141008, + ), + }, + 'KaiseiDecol': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '887e1d7da0479aa09965de35e05cb97e9c5009b501473b3d9490b377c9a833f2', + 4162500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2651c5600af06be8cc894e93aaf0ce952a7b720a7445bf7812683c226f074e8b', + 3965520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62793f0807eea462e8cb908061ad7af007292bd43cd7e4a4e45ab42448fe061b', + 3955000, + ), + }, + 'KaiseiHarunoUmi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20ab7fa7b0b3c5320ca43d43ac19cb56d536f8609b4249831ca2d54e4aa3f3cf', + 4208796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84540c5f1e1f993143a8b3d3d9baad5f89de648c42a1715c13b254e8774ce705', + 4010116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01682d540bb474530d2932141fc1e47f6b5dc58faef620c6f4f14f003869f8ce', + 4000620, + ), + }, + 'KaiseiOpti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc3718d6d87727dbdfcd58927bb80e4d45043a401f4540c7e7b5af24d4be66d7', + 4162372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b28d521a69305b16827b51c72e7fb74950c74a1976ff6c380053ad3bf3c7d632', + 3965704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9086a986baf0c0bf41c3c946d225e5c52f5809592c35cdf0848a30ac1300fec0', + 3955604, + ), + }, + 'KaiseiTokumin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68c70941659252a55ed21b9f2a27d5ade1538f7b4514eb6e2e720299a3738294', + 4215280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2898115c89f632b03740d3257b4fddb0c38933e216a676c1f65e86f7e775d56', + 4009784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e001d2a79e881f4a3ddafe1d6c9c5aa8cc4fcbb1d1b0d27c9448cd34849469dd', + 4010292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8da43643e2874bdf097c0fa3685f5b72f1e54e6593dc3e99331e470b4b10ef76', + 4192956, + ), + }, + 'Kalam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9191be0851b8e3746fd385a60800003c663eb575f148b8252be3f70f59ab1d5', + 219580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51dfc2750ae21fe20e1f80e0e7ffd33cbdc06908c6b30891088c83c0e607fb9a', + 219924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eef4c1c5662dde89a7b7b828f03952a923844fcdcd9cb48f8d4411bc5634e5d6', + 222188, + ), + }, + 'Kalnia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e9a355a47d02bcd511c549fd7d30c5b6c0e3646b031706734c37ecc3b42a80f', + 42608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4f37ce4144916304985d1be7c2039cc77966c71a1405416236e372535b727f7', + 42848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0619c418513b026f25d3cd7fde954d3b5ba9ef175ea54a8a06280ce32c08427', + 42904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7080bd85b3a7c866206ea44f35e4d96b04583fae93486781adbd31d829ec20b6', + 42844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '690f2e60cddeba1d29be517672714eb25c798fc74b4778ee46e29d9a667e52c3', + 42940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bab4ad8170ace03115408fbffb7212da11178b6929418632118f4bb9cea6df23', + 42944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '937e204d27398a2edbabf70e57e33d4b750b5975110df212e5172c0da683c54a', + 42804, + ), + }, + 'KalniaGlaze': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '82a1ecb2790ace80354f5bedf214abe8885c908a08985caf383915e24afd6c8c', + 111068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '451abe07a21bf7e2011c1947eb7f62a92c39bc7d0ce0a379abfe9a7b30d00c24', + 111636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2e0fb66a8c6efcff65592b583264452f42f5b5e086c5ff1d57342e930fafef0', + 111676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '909af38ee6f16388a941aa69d1f977ad66b3931bdaae05f0b765129df8856bd3', + 111716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '204ec508d4794d995353f10e5ac4afe7909d307684542ff4f825fd0d0abe312c', + 111812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17198c62ad3f54c0e1a3db9203052351deba5ba205308bff2991f79b5ff3db91', + 111772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ace1e5f0536b42288756812e8d30a3779f67dd047be1dceb25b360dd22df0293', + 111360, + ), + }, + 'Kameron': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b30db3856f730e8808d47ac3715246180e91bea033036d91277dcf4f8e3c9097', + 47672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba01c35ea9afdb3ab7c5e3690b57c932e3db85e792fbec667e463f4483fbcf9b', + 48044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02e92f039c86675fddd1983bfc5da281ddb3023d9c20ba1c8295aa6f73ce63ee', + 48272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd24a03372e63cf2c0fcad396c29ea8ee0d612e10404933687f14567a7c28949a', + 48180, + ), + }, + 'Kanchenjunga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a35113f3c40d71c05c08882ee4da31e0197d8737102263c52f2e5f885aae845f', + 39956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b22dc487bda1a09bb412cb1bd912820070c72290a44ae4dc1616839654ae525d', + 40004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e42d7421bbc19196367cb10e31aedaa440ffddcd57ebc3961599f89b6908228', + 39944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc1c923346a1965023c505c633151c04c14a67a8062dd0b2e341e24995d16380', + 39972, + ), + }, + 'Kanit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06f06b0b7f792cb46c0a13efd219e69c054cc5918113e1a43157aae4fe94cb25', + 89304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd2e0c8743bdde51ad55e1a358dbcf77c297fb52a62d3764e69b7528a91bea53b', + 93928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60fe7e3ee4fb8371c6302deab8a26272552b60e03ae318bfeafcc9954177c28c', + 88592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7cdabd04017b9030679fc8634a5590cff08d2399772c983516d337aeeb6c3e67', + 93544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5368b76bab1d3628e2e01a5d2937bd547e23c7810fe403fa4955b91ee4e3c708', + 88744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dfb0e6f6c308bf5332b2ce1652aa1a25a0acfc05a409c43f2da83fae3370523e', + 93564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cfc481aab6ec188e6fff36c9a15236f231602c9ee31efd75d96e8d29c568703', + 88056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b64cddb13da084f2f5e875c1a0dee67e724ed54e38c5361d2c7c96eac1f4f2da', + 93008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69cc8c9081c46cafc1d573fdf510bd3e508258ac95afe676846d5f9fc38210db', + 87548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4d53b3ab1a0ca93b39501f0468ba187e4699b215fe5e43a831668b3fd4c0fc6', + 92712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3f92caee3b8227fa35bbd58beef1916002e9c3d980d224a6f56b24649c43910', + 87732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8494f9d34d5218a8a91e264a1e770d7475d88ddd10040203b099585e3a2d7591', + 92928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b57641d789e0b469194571e58f44a22f9afc2626b8c46e58f145c55e56a875f2', + 87448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6c0034fa2f00988ff7a943303731391d2d0413128e87fe86c494569df32df247', + 98732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1eaea33db18782bf5bd661c5da80a23929b0df6a4b895747ac844c0f6e1b6f0c', + 87604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '57f630c23b02679c1ac39f9d9a18814b273515745a5ca23ce4039746e22bc18a', + 98916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f9f8692b3f5da42ce6b40b7b51ebe656a9447a51e71cf24741e580ebaac9558', + 87400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '76370a8987e5838bdac953ffe5d043d66065cb3da3e3550fcd6e20cfe30d21db', + 98380, + ), + }, + 'KantumruyPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b89aece42f485515fcd295ba0a1d0a8ae492ddedd8b91caa7d73b10d73ec1579', + 91600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '892b7197a65164e2b207a9097ba7f2b8c787bb5cc7d85fa8ac07475193bf3fcb', + 91880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd18a7b79d972b6f3973635c323342825006c5d8dc7cc3907d2072ebbf725210f', + 91836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e74b62d542d5b45c3bc17ad07aa231bd62003ba4eefd1a8954e12e5ffd06ce61', + 91584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2463ca2d607dce0f812e31f8fb18527af7f3bee72ce52baf11dcd006700db4e', + 91796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17dcf8df2090284d69adf939da3a7b5460366b616741a4e6e9878c42807e8441', + 91848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a7ed1954b50d1ab5947ac804345a7565f13464989f3c17f5b1527df3ddf6186', + 91560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '01a9298d739a7b46b4ce8d0ccd9644adfda9ddd17bb51488b5f3e74218e2c9c0', + 100300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b47c30ea1d66ae1c6a7bbc6b964ce3b9935b533aca1290750ca10269ce1102d6', + 100540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1ea406be62983a59e08ab2a88106212f8876b7e736f2cc7339a7c5fef4c0ae24', + 100388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5d1a6d9f8bb87b3ad962d8332cef3f627cd52dc164d1713af96f4173ca5996ff', + 100096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '838e78981910dd488c5b9200ae4854c26bce62f1805ead7a9247aac77b86a6ea', + 100428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e34b27c235031a4d6fb06239fee4654ec3f15a19be28e95cb48e155388fd94c1', + 100456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00c12d38fa830c1b2335f3605d79dae8848c03d5d2b5541bec2a98bee54cc523', + 100152, + ), + }, + 'Kapakana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad00370d32204d9a57d2af1b6fdf9f7448bd94b3884ba3827d8210cae5428c1f', + 120488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '329729cba1ff556fe02d68f59076b10ffdea97aa91b1f1bacfc937f0b033fb2c', + 120484, + ), + }, + 'Karantina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b93019d037312572b767b8261143d7107d1fe9bf486e180e3e1a26ce15d969e9', + 34228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd65025efa93f18afe3f007dde2c812d5f4a9ca0416c249e03b2d1d110670362d', + 33344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77285ff92f6520e6961354a13e2bec7516b8bd496a7957022ade57484d2b6d31', + 30000, + ), + }, + 'Karla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b348d028f4cda68188b1cc5fc10fa2961dcb803412eeef6041ea885ebf83e1a5', + 41544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25e44e279eb4200eae1e3b02c675fbce22ff509e3884ead567d9da48af7ae49e', + 41560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb424f6bd2fd1a8a0deed5b16d7f9c922c4596b5a03fbe29663e3567c24f79d4', + 41488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15fda77d9f786fd2490737ee827b04016bca8c2a56430822e90a2531b54f9d38', + 41532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '014c87c8cd099f5422b473dcc794689df0a63700b2d3e439de8dfa29df7ab829', + 41584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '111d36983e03a0104892c94f56756afc769075a9a76db89ccf45bd1f8f668481', + 41548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5dedeebc0359adad9c9486fefa642a581ba6370da9cebb6882a01f0317eb548a', + 41908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '56517cf12e0855891a894093a9135d27b35d4584a0f1bdda6b879a0d1ce92a8b', + 42556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c57d59daaa990e464bac08c6dad48efe8c815cf28c08dc6a302ef3d92514bc0a', + 42480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c8dff5f5b1c06ab0bc086dc780fc03f8284df4886d0a7e239ed7494234ba1204', + 42336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a29140dbe602ffa9569194401b87693e79840db4df6c8cedee1b3cb2fb7ee6f', + 42452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bb441922525565af18693bc629b0cb016b9ad69cd885221f5248c2a7e263cd1d', + 42476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '89a472b56ec6594af8c4212095149d144918f6905b5870314550cfb8f5d1c8a9', + 42360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '80638a8486e2bfb172cc2a18b4efb6ba8dc80b2b83171b08238b1e9625a5d528', + 42772, + ), + }, + 'KarlaTamilInclined': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3ce30a20ff6ec6745e386d1ec3b0004ffd25642262216f1573c6c4dad96233c', + 69780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0147fcba297de2ba0b31d5029445cff5e38ca0c884483fa797c690abb5b03c05', + 69120, + ), + }, + 'KarlaTamilUpright': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edded8596cd0222ef2fce8dc80ac59039066644b9d9e5933f72aa5b3fea773de', + 65584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3b8f523814b586da87c7cdd4c2de557b2569192a94fddfae3b624cc8a020b1d', + 64924, + ), + }, + 'Karma': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a21155205dcac74aa1f9c50ca6498b3a5e515222460465e32e7ec70672091979', + 196104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f51e473a69f9633db972a717423bc33dea21bfeba412801f26d780b81445432', + 196176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ddcbdb24e531dd1a6e20025e8ec534048b86e1cf0461bdd99d7d2a80c173fa7', + 195092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '804ef0027eeb543d608117ae0e9c0d55ccf4566ccc8f203f5ab0f82e61c98b51', + 196008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ac4f4cabde0e866d74d36fed789e3bbb37a5fe73599823ffdd7052a51e32c95', + 196568, + ), + }, + 'Katibeh': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '268185543af8c313364c9311d5827ff6c6e1aa4ca6a9ca9eb05aacf60617cbee', + 160072, + ), + }, + 'KaushanScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a9057b41728a3e9df253e4c23e7189096e50c2d144370801f524d727a741d76', + 108288, + ), + }, + 'Kavivanar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07e301f9748840e7500eb928d7c88907c1db864022fedc098a3d713435392bcb', + 64672, + ), + }, + 'Kavoon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a24b6a315e06da5cb836ab6e0349c9a384e2d5fd70e12ef82dc29e51f402d997', + 48948, + ), + }, + 'KayPhoDu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63ceb6f96a6519c8efddd85e998b9793ed73079ec5f468169148b97e5231b84e', + 34660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9f0cdb1abfa202e949a90ea4c131139e2bddfffa42bb946912f185c44b8a8bb', + 34408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4b5c6db44c3286978b45fde5c8f657c25fd98972d0ced5dd63ffe1ea339ba35', + 33800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'deebd6d1ce28923c6c9562c5bd5e596992efb8265482e05ecfe3563da56c3422', + 33704, + ), + }, + 'KdamThmorPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6d1d5afde05234e0088c5680d42c877fc14a68b0adbba5a35de4132e0175e3a', + 51388, + ), + }, + 'KeaniaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0eff4508a85967e2255b9ebe3ec7c91dc5cca10aac289f6c49a6c9e208ccc4b', + 35804, + ), + }, + 'Kedebideri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73b82b300a9ee508aab2af5e13357dcbe96a47718ebe52f819569d8467d585bb', + 38992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c82df34b417156bb3dbd865ec0e3c3cfde3719debdba61cf3f60cb8a253bd62', + 38896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5da8416672b031ba1f194ff1b8bb03e5144b9d2732d3cc93ce22cb8adfca4baf', + 38808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a95efc18c72150feff6a41fc146aedc22f1f45d94aece3f95455d050a787e58', + 38752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9af140901b6029f15e2739537107768309e2eead17976728501527bd734cdca', + 38736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7deba4e43c23d9bcdd5f60173b84b5e4d28b23c0777e158ee4d483e891bb89c2', + 38724, + ), + }, + 'KellySlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b64a08ce800427b48b17ff0c23ddb46f47c9e0a620e5f15da2f64abad1a8e68f', + 75452, + ), + }, + 'Kenia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b829019713cb82f54bbec80f1215b84900f68d5b66ee454ee0da12068e0053c3', + 35048, + ), + }, + 'Khand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf775496a385ec44b0ece0ff96fd1535676f3f3aacccedadb9cd56f8e4745574', + 158712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '582460824111d52b73f4361b33913b2b4bfbb35ae7764c0b038485a7874a1652', + 158896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a5a1a93fd2afcf1334b628aed5ad4085762bce534c6fe7a0e26786adefcf637', + 158288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2534b9cd7b2ae12b0f3506a700c1b0383f8e99bbace6bd7cc60a69974b370f7a', + 158528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8de129c24bd37dc380a8239b1a1036c3ede518a1efea314136b00b83017c27dc', + 158060, + ), + }, + 'Khmer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3cc399a50aba5db352582739c4a4b26a3ad8a3d61b655afca404e89345eb5f9', + 57876, + ), + }, + 'Khula': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bab5d9a55ec9bc436f00a2521173415f8e3167518c5e88af2606ff2e15d20e7a', + 98400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c422b396caff17eb14f398113dffa771d8ee60ca7c96470713434559ce9c5a85', + 96640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8bdcc8681df47695db99055aadd49542af4e0492b5ef7def3a7eb978fd8feb8', + 96524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '887da1d327492cdaaa87434b0f5ae79dd8e5b6d3a30495eae338f67e268ef6e4', + 96956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26feca617ca77063a86d4e2284d7e4e9d0610ec8a457452d5191abeca9602347', + 97932, + ), + }, + 'Kings': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1df4eae135a596ead987bc66df2fcf2a97b3ecc1715f196ad909d4add7fdc84b', + 115616, + ), + }, + 'KirangHaerang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2711563585c8e2a2ca6c9b4380b832e4c280cdb5bc8f78e8e406769c8d7a9b6', + 3555352, + ), + }, + 'KiteOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e03d7da325167da7964de7a3bdf7a04a95001a29e0938e730e631e9d3f44f6a3', + 46404, + ), + }, + 'KiwiMaru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b69f050d2883cf37083547c436d249553e6ddb58149c9690e6961c6e6474a6d', + 4630760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c86973c7af049ad28da51eadf49ddbe124bc826a7e816c7b5ac8ed8b07bd3f13', + 4709164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '171384d40493cf566b3c97f923e747e315cac93036e0647c1032bdb7e2ef323e', + 4765320, + ), + }, + 'KleeOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92e95355d5af1d686c4493ce08ed95d9389abac826d03540dcadc3c768388498', + 6650228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d3d56cc146e4fb311f95cf6f175f506cba8310e5edd8b8bb05fb301fd2650c3', + 6799452, + ), + }, + 'Knewave': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cafc1f5c6fc43072b98d3eac150bcc09eb25b612b29ce622bd5492be45ecacaa', + 30844, + ), + }, + 'KoHo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec72908607246513b4a095cca709e2756b53b0eebd8a9462f92e7bb8c6bb908a', + 86796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '668da3b778a34c4c3e00aca9289dc1dee58ca6839065316cae6ac810b863d3c2', + 90988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34571aa96feaf4f04269610eb620b1cc70b1d16fd0fb71a2eb8e8e217b3f2aff', + 86488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7141e6f51479ef13db3adb9cc0e71cfd41e9aa93988424fae02a20c7aca0c33a', + 90692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80878ac6182aabf26e0ddf71b6685c5fa2b7b41419f6115cb922a10ffef0c880', + 86280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eb15a5e30892d79c8a49fad3068fafafcced2b68c63472c5ecd1476d22d781bc', + 90608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e261a9974dac5db83cfee9f8236d7811822d28c52e03a882f098b8ba747cbc8', + 85964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8fa13b823ff3837370bc356a643b1cc88399c60dfb9a9fce8a37261183ba3c92', + 90284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d5cf244d5ae96c04b0eb99dbe560158711f967cc465711f3f22836ebaae6a83', + 85772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d8ed22e9ae3a20639f4586edc28bf04347de306f1a2a39fc3582cf090ba3e80', + 89876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '696b34a030208f60738a4e2dee1989566acfe865ca23fa6a659666e889a392eb', + 85204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ee67bf9d82933e20dfd49e24c4e0b7e0e22a4901b2bc734da60f39dbb763388e', + 88916, + ), + }, + 'Kodchasan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51ba14c8d940b02681c58a233d91be42514acc1528ca8a07db5e9061bdb05fb7', + 95636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bd329e5b859e6646ee76b561a3ebe943202c322beab9a8e9312c45a26770a3d0', + 99936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd384f6ac2884937a1143f12730cd2aeb6ff802fdfd59565103e1f85949c5feee', + 96820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1cc7f8c735b52751d9d1a5034fcdbbfd29050bd9c873c4d812315d6c31038537', + 101004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88d50e916b7a83bfe8db0d326aafc844a6e414d9f6fbbefe0f6d76fb9ce2752d', + 97096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef428c20a1b85836080bd5bdcd66e5060e6b95fc1fc13813da96d4980ebe2a8e', + 101792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62ffc75a4d41f734f4ec39cd8e6a814adc96b732e5d2cca19c5e40fa5e480fc1', + 97392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5c4bf961b7e1d00ecaf5c41dcc6ff2fc04f41910d3d0bf4e276a331ace1bd583', + 102188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e72a6e89a5df9cfcd06f7290b87b4969b39178b50116352761a06ba499db8a5', + 97472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a86605d7184986e67024e8d4278b8aa701da259741e2f8df0f4c416a522602dd', + 102656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98d1e2f5d9e0ff0153fe51e5cae29081586d32ee894781cc18d3f733855d1ce6', + 97304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0c9e6e1f3347736d86b5415972e66de63b353e7452364705a8262dd34e858a8d', + 102752, + ), + }, + 'KodeMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6261ece2db7c0ce519f62a9cba501e50b3eed789c91436a955e4bc4a37ee3e3e', + 43452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '509ceb17546005254d0b54de01ffe15dc4d7eb65b016516907212d43fa6d38b1', + 43548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6df8ebd4dd045decffe4dc464e6a2690fd2f668a54c3071e1bf5829b88f04718', + 43540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '917df0a9dfdb2f0c6a28a7770c5b92ad29fe443d40ef4d862cb62305c6060afd', + 43444, + ), + }, + 'KohSantepheap': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07e6b24a5ae5c0c9b9af9ac83d8e1b316721e751136820f6c2b5df2fa5db10a1', + 96060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7815c4bfbdb23de63068b0119dd7a3de19448b2354ef9970c6f89a561ff220f5', + 89816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c770bfdc8ac0f1db2bb1e8176b8ff1e512605918f87dc1f4dc58f419c40f1a9', + 85232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80323b05db54d11f7497cfe834e70bae1e8424ac5900d5ae40e6a8c2a2aaf35f', + 81884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7522dbc3efbefd21d645bff17e5eb1945b145bfe8cf42ab0fea2b66ec0b79bdd', + 74620, + ), + }, + 'KolkerBrush': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47f0958826a64656d56a561d08e2309ca6e01a7479f5b6f50875479033f2f308', + 180044, + ), + }, + 'KonkhmerSleokchher': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00b63640c4ee464aba1bd1e509a62372b1c8371fbf31ee8efcefaa3e6c8ef173', + 566576, + ), + }, + 'Kosugi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d0d7ceb5b74fc05170b69189955572c79f856e53eaf8e403f417fbe805aae3e', + 2286760, + ), + }, + 'KosugiMaru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74b014a4adc4a18351b011a88719f26e77ab74c4ad37674e4affa4ea16105b0b', + 3563628, + ), + }, + 'KottaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3d17e78824e21999ac9737ecf39bfa47fb92ea2b2047cfe9f778138f3f114be', + 34152, + ), + }, + 'Koulen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f291a48b9c6a3a6d6456d259c15e62d3046bd19cf59dea0cb8ef62dd2300ffbb', + 31796, + ), + }, + 'Kranky': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdf5f18de211dcf084a419270d157166838ec1280b65b956558e453e859b8414', + 197324, + ), + }, + 'Kreon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7a03267e1075f8a8ca28af73eecb71a9a9a583e8275b32dc392bd3581995f0a', + 45264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00b35552940ef53d616036cbfa28e7a44e690bd696166eb2540f13f2681e4da8', + 45460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75b927644ae3d6ed88d5c54a0f5172e1858ddc50cdfc09bc1ce6cbda1ca82f0c', + 45472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5cba03e749a389adc802469c52c97e611af45caae48966c864f20d3f84ab45dc', + 45496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22bf2d1cd15e172fb59b99813da08c14e9e9bd8d9767a5ed5964c476888aac22', + 45400, + ), + }, + 'Kristi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d4b5335341a113d30256c58448723693130f94c8bf9374104e5b9d2d99e8b42', + 25700, + ), + }, + 'KronaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df5e87080c162daf4d67f36101b24284a7f902a5f5a16af71a4a9b5134811789', + 30664, + ), + }, + 'Krub': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd192b583baed64c1f2241be2dcd9fa60b237941a23ee05489915f2df2e28c71b', + 81724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '221e60e5e5c4b241fba69d6882f6f83a7451caac8c403952c0e9cc0f3b6ac574', + 84708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dde82fcf84049541362c5b59b6e80579eb26690e90ccd7cff8a4198892d0ea2', + 81160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8eae717e114ed1d0b5ba175b5513ce51cb29f2fcfae3cd1ba45be0aeb30d9d9a', + 84048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cb44e10e5f85716a09aba1580dd6b5549906eb36a731ce30e369cb02a72d01e', + 81048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6c0c337a55b0b291630ee34ff66e5aef31f3f4b4edf20a3ca2bc6de2afac476f', + 84100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f64f3a5697fdc2d35394b022ec94db9c98dd7eb0f8c6f07d145aae3ef2d2e273', + 80960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0468c69e52347ea1ef45b6c9c67519819c0da6b2f15d21d348053473fc7fa727', + 83916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99fe4f2db0ec3bfab079257f9b38a66797e00bb4128b259f8838ea52a4546b0c', + 80860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f48d4304a3e4f1a4c71731dc6e39f95c4d12b7858ba4c030c21e155928f8ace7', + 83852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '801e056b9717f3b2532a69c7841aff2050c0819d8571765044136051feb64803', + 80816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8acc7b0c9cbdc841dbfdead4dedbbd1652eab1ea5292f9878f44c71ff70f67d5', + 83852, + ), + }, + 'Kufam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd6a99941bdd392f765cbfa97cfa04605bd51846a702ec9a5f1e02ec30f9bd5a', + 160156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08443dd813c9891f45dcbaf3beaf51583f7428c8267786a9536eee90de9c315d', + 160500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7938da57b205f0035a636ba3eac698ec7525fb504cc324077af06bb68992240b', + 160648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6cc1c883a3d104fbb9694cb0b06335c8773f35982fd1d05f2580646b90826106', + 160720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd33f9876a07ecc331ddd01cba0992f8003380417c7d77984ef7b29622f73a73', + 160644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e189a3a8a4d1b658bfc9744bf16aa32d3ddf2fe96d7e91b128ddaf6c9d22e14', + 160160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b574d5faf465d420381a4a2b998177d71f6fdc712108b3d8dfebb1adf0093828', + 163740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '97eb60440f22a2a17064e4ff96724c15d5de72d18b2b6952b9b0cb7be5cdb40c', + 164276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8cfc16452b40af807be3a40ca1a512429f27acf46ed097e6bd5cc97c691fc5ee', + 164328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '59dab6b5517c7889db5c3cf36d179d655b519ad9e7348d77f8a1c737599a21f9', + 164308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '482eade33d5714da2871006ab6c1b5fd1d7a725aad822c16e085e8c8aa4b5fb9', + 164284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8813d8ec458115678a9a6473bbfde3347664f6a252f22f428135ef4952bb4188', + 163748, + ), + }, + 'KulimPark': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5962714e624f9ec0c9ebdcc1bdee136035a2ad629f28ab9d939e2de7bfba4b8', + 43296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8d1c20fc871290c88d3cd0b879222752499158ac22dfe8e9f3b73aba2f73af5f', + 45336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54d913485b1aa1d9e57e1cea9a8a7eccb28e2f83a07b72e86081e27f914984ad', + 44440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '63d115328fa128ca6046270f01ce7d5d87e81c5fb3537ff588898e0dd43d08ff', + 46240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7ed9c6c1982cdbd78b7a5303dd6e44286d470f8707ce9fc8bcd28adc2a01176', + 44428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8cb645ddf04cd6318873fe23142e6459c2f5f49b4c80689c53c13fb4b8a90ddd', + 46056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b4c6c718654cd0d576387515a6fdc63c562f9333cd248f65218338e19232e59', + 44332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '50713ec77ca97f4756f6be377fa9b8337afd1bc9844863cc77c156de05a147c9', + 46056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '405199b5460a958cceac39d78da24c390e6df63155e2a664af0c05e39676ce43', + 43896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e9a69d57754b33df580fdfafe75bf88acbefaa72336e338389f93c5af12f165b', + 45860, + ), + }, + 'KumarOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48bf0ae3e590f0f240dff6ad4a6724d2abc20087bb3e5cdea426d711d85ccd37', + 87420, + ), + }, + 'KumarOneOutline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea49f81f10256a77f062b94836e6e3ec8ab0d0772c61753c7dffd1b77771cca1', + 119416, + ), + }, + 'KumbhSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4a7b2848f887899845c0ad529ad751556c3381e5767364d9a98a95b3e0c6a0e', + 44192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca2d81824d648fc714897bb4a2c70da0922dde0ddcaa7a5404d589dba91b62ed', + 44192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb544a76583ffdbe40a656de013bc0786cc1587499e02bf0ae275eaf1373f463', + 44084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a410e6aea100aa3e1a135a5accb88b1332c2e8825e2b36eaf8f39493586e040', + 44008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd78d422fa66c6aa150996256250a74ed469d30b35d2bf0f5c5e3d6352611d5dc', + 44048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5da0902355aec61d208642d26cc3a51933b31094d7b3454c3ef23ed4bf0a9cc8', + 44172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '842e2192ca9cd4c36dc57c07f63a9e213167aa6cc7755c437dbe1193eb1cedc9', + 44252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b43b40db487609f25d085ca00d46312eea3c1364b2c1ba75a9d81f70c61f1e0', + 44352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19442d2f67498e9048348bf8bb643ef689b45301ec04b0b2b644f5ee9bb362a6', + 44340, + ), + }, + 'Kurale': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80fdb704b1c95fa9732497e5badbffd2fde355472c91867e867e7371b1e264cc', + 137008, + ), + }, + 'LXGWMarkerGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8715a0406d71876832162acdcc27321bb58f77df0d7ad60c4aef48750da4a3f', + 3185012, + ), + }, + 'LXGWWenKaiMonoTC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34885aabb423d39cf7684f3b044d878fe5b8323c325dd25d95944c2b4b8eca38', + 13712524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b359700d584c8a61131c84f68ffbcd2068c18c6283c7701a941d66d4ae4f26c7', + 13073792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c97f791f608f9fdd28487f62c28a49ca51fd3509d22880f2b0c92dd9360937d6', + 12836756, + ), + }, + 'LXGWWenKaiTC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76ff9db2601e25bf67f9c8fe5f5728d578bb8fa08444bb1636fccaeaf4fc172e', + 13714320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a77556591713bcd16147a22c45bb6743e6330389f8ff9ea2c821bbcd1a374a4', + 13061396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd419f3fae37f8854f7f5ada63993e9ae2553cc309799326e36633163036c758', + 12832752, + ), + }, + 'LaBelleAurore': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c06647cec39f8069c1768c7376877865f527365293d01710e6cde627c793cdef', + 44140, + ), + }, + 'Labrada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5090110d66396e3809c7e1165cb345803c3bb11c89aee78deb54bc1620b49f4', + 73564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70b6c5baf1c40b42326ba563a955d2ea6118f87f633bf42e937ff0d51b376a6f', + 73968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f82cc3fa0b6036dc702e85ab7c67a407717a6217e5b8305fd96e8fb768a7d78', + 73980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33c290a9410e665de88a0786ba5b937b0d090077485cdf3cfada0d1591597044', + 73520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe0eaf279b704d6cfc92f4b8ad75c1d30ab656797e0c99dfe320d59f5f834b34', + 74076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe37eb9c8e0be9811a2f10a1f1486a2545e43e421295a2c0ddb28736c7bc9e76', + 74652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fd64630747afd51e7c967dda425d51e61f8f9b0448598af93488a1382ac60dc', + 74640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fec124a04e386165750a8bd9d237f095c4f59654ec1b70b8f56444684adb35c8', + 80496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8c9d251a965bc31e6d62c59873b436fdc2d3b008dd177996e73fe61d29235d4', + 79620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a44151b1eaf7074dcab7c3fced166d7f2439b6ad4aec04640263bba4f858a271', + 72576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8a81babd82970dc00c9473ddb747c2ad6fc1afe519c2033270e8f6a70ca76476', + 72952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f4060191fbef4161020852121a36362be90cb754cb88c0414497d1d150d585d3', + 73108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d8908a00abe33a3343a1595a8a97f9ea6fc4997732a92961f7a303e1360c5ae', + 72728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '802729decf1cf01bc2cee590d1357e256bfcbf9b90bba663258348ecb4be4e37', + 73116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1160e5b6ff7383ba2d452eed4081688e4221c4a12fe89cb9dcc268e9aa763c2e', + 73236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f22f56e86329698bed33a8429894353034552f780b6b0df9914602b13a3ad59e', + 78016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '06cc20c37ca263cc2da7c3fb34199a7860a30cdf4e8cc8a344e916d24ee54eaa', + 78148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8f6ed77a7b4b63b60c72a59b4d43e79c995b244d6022a05c5c500a03d32f493b', + 77740, + ), + }, + 'Lacquer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a7cc6da784b0dd221081b1af5dbbc36d76e666d3fc26ebf4276245eebe8a2f1', + 203048, + ), + }, + 'Laila': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05dbe700f5e513caf8e55453c3069607b7dde637b876b29be7d089e4bbe2a4a0', + 198232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5474ad31acd43da058c6c51f1009720b3a23f899dbc0d565c6f4702d6d34173', + 199212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1df19efb6c5a8459a3c9085514e398bebbcd12c7ae006c95cfeca343038d307b', + 197344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03a35ab5bdcbb59917dfab119084386a1bab386652918b2738f2aff6b776c008', + 197216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c55c2f37201597af087329a7bc1a845e8cf88dd1006dd2af3a3b67ebf280468', + 196084, + ), + }, + 'LakkiReddy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f08fb84f2d120df6327946f8606f23beaf5c7aa0539bf271d62364b507cfc042', + 354844, + ), + }, + 'Lalezar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4907c2d7b631e0a1485de6f1dd643c7d8cd9f35b7292390534078cb3eb788259', + 160576, + ), + }, + 'Lancelot': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '418d6278c97231d8c7c60f8c60653c97a2c0974b69a78767dc8b7155e30adcce', + 24412, + ), + }, + 'Langar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2b1278f1bf276bc1885589a4c34ab17166c03c3b60921e2513cf7e6e524499c', + 137468, + ), + }, + 'Lateef': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c7d9752118bf9ce82e08d9a8116791e0a27e65da77bd0fa315753247ff18f356', + 222012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '173129ffd528d465df7468c58a8463e656da2b6c2501043a519fe0169ad80746', + 221056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78f6390ade61770340fc4df06a5fd2703aaeda8e83332a7d7c6a18799b76d5bd', + 222312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57a726328f3c0740e0b52e433f8b9fa01a8839e4840015966a757b7137f9fe50', + 223208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be5f6a76c300fc41f201388d13702ef513310e2be062ea661b4fa6827384daab', + 223412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3b8a006552091c21fb0ceb63a8e8257a22c766f4914af0b97ad5a530987a414', + 224464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f78db2bddbf59c6ae723b5296d2637142fce1a59426e576cc0013b6c4607852', + 225284, + ), + }, + 'Lato': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bdeed3215d96c48ad8dd5237a1e60317ec6880c4fbec433cd7e0043804c932ef', + 35368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1f0fdef9af712c39a7770cf35712c08abfdd4ccc01665d3fb2ec67559018d0ad', + 33960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8b8bb46e0f9d42cb83e6cd722f6dc0ddcfcd64ad68ee4e1227ee74ee1028cfa', + 33288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b75fa5b0a60e22d0b15904a3c4fc6837a84e527a0a97a41281df880920dfea76', + 34472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ced1045820caaac87af3f61ded09bacc90881f158d04c59dcce436fd02ad368', + 33408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4b73aa5035797a21734eb2805ae3ad62de986410d20e956146b379ad9cd9537f', + 34560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af2c9fa2534c5e1605d24015fabe84c697e5381b0549e4ad3a1bedc21df911ae', + 33996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0df2d41932fc1c1b4a445e686733496168788fb4d4a1a1ec0584800ff8b9cd0e', + 34704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea4d535c8d7443f9b269dda3c28eef6aef7ffe002a780b428de75102777d84e8', + 33772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd91fd5dfbe26a450a2c129143894275818bcae41aba08bf9d244db6d94942674', + 34620, + ), + }, + 'LavishlyYours': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ff89e3aad6cb722f284df373261c97e22565e5d1ec91ec49ccf9379dc4d0a93', + 96148, + ), + }, + 'LeagueGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c7c56c2f5b21f92220c04e07ebdc879b86ad18a4f2ecc632302c75687579405', + 37340, + ), + }, + 'LeagueScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcdbbd415480a9c1485a186c51210bdab59d7e6006b334a75c2cf62bcd9ba223', + 37984, + ), + }, + 'LeagueSpartan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ae38ca0607c9faf085b2d36e7175cd9786ce938b5e7807bcf5813e08de42841', + 52832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a5261c13035205f4ab84ebad18731dcb18840f9401d31c845fff1d8b13b6628', + 52884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c969459e2150f6b10152aeacf2ceec1983c1da4f1718242572dbeb883c40e99b', + 52848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '791f4251e7f7673542eb651f6765dcb086ca1461fe927565ac9b7b59c03dde0b', + 52848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bec7466d15f1e60ba65fe8e0a73ea064442e004d9c3361b5df0210f4bb2ac208', + 52868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f86923402051db73f2588732c7dc520cff0920a05b0d38850ad0d488b85cc89b', + 52948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ec6e3298d39aab526226dcc69cf7d7490c9ad6f838cdc58c817a4cd96a1564f', + 53004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5ebf36002bc4e75d798291af375cf8f034f7d64056a0b1af5f0079fd6ac50e6', + 53228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8c562b3a62d436f7861c0cea1842f35c72c6cfeda39776c67db5162c09907eb', + 53096, + ), + }, + 'LeckerliOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1bda9397d82e8ba5d5f118ce0e5fcc5773edd3babfc9024f2dd085347fc2d3e2', + 41024, + ), + }, + 'Ledger': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd65335c3f1088af27dd4553d85ddab6da3b83e18e51a06068623c2b9d4d44950', + 60016, + ), + }, + 'Lekton': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c033388d5fa91a646e4358f44bf753b82b410ff47cc026e19889cca98c04f76b', + 36732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '16115038ba59a9790a93405ae435a49c91274f518b8e23c1dd7ab8e61eeb8878', + 17920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66e08b4d07505af1f67710e8945e5243722e2874f094c5c5890cc4d9b00ce50c', + 36552, + ), + }, + 'Lemon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbea0699bb166b34766a1ed3c6258a25ac859686145073d0adcd3dc9d30fa8ff', + 52844, + ), + }, + 'Lemonada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6671bf30a792ec4542419830dcd7657e3a3e494f1b470d5591b109e5218b7e21', + 89364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5c473e0fe1bb1212bef98849ab1925c5d4af0bbe7b5788d4c782e003e05b941', + 89616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52ea85b9fe865dec6ff586241a3fba955e7def3154d00854ff956b95118aba73', + 89700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24c95b632bdc49e568516e93189f5a858d8e43d965b149d19c10f19f26284db7', + 89696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2c7ab9c2b021877e75ce5883e6384cb8b17f512cf71a53ef8f77de3289bb40c', + 89504, + ), + }, + 'Lexend': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3946ad637d312b26ba234f6dd9c4203a28b41c2ef105e2882a329ed8a4fd56d9', + 70780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78472f2ea087d2ddab65cfdca146a5d211909ec6a71ead95ed99de36afe19ca4', + 70856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0405fde47f27becb1286303ca91ad3d2a43e4b3e7943597ab5cb8116e9057ec', + 70996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e92ff07c5686aee1cf71ba2aaf8b3afcab70db722680d082dd2fc496e65fe383', + 70676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '798e5451286179b70e81c23fdb5d92732b93b2450eaae3f3557377806954e1ef', + 71012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcac18cdf67555e75f7d747fa6055c11fc58a61ea8cc68af0ade707717018908', + 71056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe323c8e142d5f92b974a48973bac235966aa3a76cf0e6d76ea89d03f7a2aa3d', + 70928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a53493984e6820fbcff2c4fe35927f11397911054cc73ccac5ff76dcb77dc31', + 71044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c3c72060a805613a735fdb9523152f880e1cca7577bacfe751cfa7d5ece2053', + 70828, + ), + }, + 'LexendDeca': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49aeed98e07177078f793592072ff285b509717cb6e47f65f0b0a9b44bd64f8a', + 70816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ded15489b3547a05d137e4c6a38ac292c048b80a3bff6891f03ca03937cc9949', + 70892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27d2d65fa293b2be76873a968528110a50faa5cd6e65b247e041661f6d8caf4d', + 71032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd722f439cb03f2dee83583cda8dcfd367c5eeadbb19aa38412db8c21265430a', + 70712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd553c5b80a0e0dbf71ac21a333aa55d976007a0c3003eaf51384fea3a901f575', + 71048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '652ffead6c77c20b77bf344ef4c1f29f904132f10c6dd7f0dd5f657614f9bfb8', + 71092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '337303876eedebd9993321d91d3fc825d00d5a6d852fb27fa27377542aee86e6', + 70964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44adbc7ea03a75b1493d67c2920adf99de43daa53240b72bdbb12477dbdc86d5', + 71080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a019b90a0d1c1cd959e293283aab7eadf58062648454cb76cf71483279d0d39', + 70864, + ), + }, + 'LexendExa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95f4e1ab2c0fc24c3effd54b468643a97f36b5da8b31639156715a296edc1762', + 71276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ec4158bc693725cfc58d32e2d3bfc46c19b62e265e6822aab828b826d03a0b6', + 71484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3f95b8c776fd956a22f45ca06389380c76764f41f28f59597cd09cf2b3637c9', + 71436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef68511486f6f4cb8cd96ba4c1dd388e960a0cfc549865d533c6ebdb35863530', + 71232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3bb2df0ce8295923405caf21410f5d88bd4d8f06992de183f214e0d771716a7c', + 71624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd7c30c2fdc130b02c5826854f4bf005f21a116c3b9c29d25c779fb37c43bdec', + 71608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30c29d37ed9cce8926bd3a15b657a38d91a959279697d330c2f24a0388c088fc', + 71536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2739f69068cf22dd9c0d7555cc2f96f7f0de7010c896495758e52b4f016612ab', + 71576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6895ef488468ec459803335b36fbe98322eaf9ff35935132c9de28915044e2d', + 71424, + ), + }, + 'LexendGiga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f57904b8b14c9128b013d2ac5133627dc633606a59ebeef4efa8d1cfcf647892', + 71504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff9fb6de02eb9fc724fb8ce7217568245d6c23d3e6cdd80d33dfbbececff5ebb', + 71756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5578d6df805b472ca07741ed2194aee0a90058ac9d70cc4584483a1631cbaf87', + 71708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '777d7d30d865e276081b84182bfd7fb9362243177bd96f1eebb7d9eef6b58f93', + 71488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69b725b29cb870230c047d09cd60c0d51d78198d86d1cf64a073dc47032fa1d7', + 71776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71846e81b5a6c150b0b46095d08e321f341c56e979b6872fbf786695d56be671', + 71864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43e453e0075095b2adbee7fee791380af78aab9b6357745b9e21bcca177e1f84', + 71740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78f68932a698944bf894a04d73a4954221fc238d905dad2e811bd8662bb6eebf', + 71680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf6d733d9dd64337a88115cd5b2ba8d93a2357116b96cbb8799341740b047d4b', + 71644, + ), + }, + 'LexendMega': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '272fe9dd40e300bf6a9036cf598a90c7c4a72af5dd10f0bd8b1fc84e41f90c35', + 71576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e73387a3cd94a4accfba8ef58ec0daf5e8950bbf5fca1b599f177a20d10c190', + 71736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd93b3dd156ee62248d6f6f9ac17d2e676a37fd96fdb2ec7a4a2d791f33ecf669', + 71696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5ec241db0ab4a807bd334011ff362089ab2a99c4a29e13209cb9db66d4e7414', + 71472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '616f03b81dc49d963f35654d68f453cddf8cf765c2e820403ffce60b0008dfcb', + 71796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f80b2760a49e841026111f0b47649ccc64515322dcad241a126492aa0852c4cb', + 71896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da25c34d649c31b321add37ab77b46660ba1181926b94663b94f9a0466878e21', + 71788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e842adcccb6dc86ad5dec7bf7a25be7cc511dfb9273b4c7108150433b3462ba', + 71732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5772403e7081e6eb9ba26b089abb648fd3706db9095ae9f08ddd69a2785fa6bf', + 71700, + ), + }, + 'LexendPeta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e863022c8601b71da5a8b7911525b127de18b98b8131979d33dd90988919d396', + 71604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35df865cd7b79309d8498bcd7cc6df8eba895250c1c670e8562932f528e127ce', + 71788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a59bea4ba2f05d458838097096b1ebb1e96a1e8e97bbfa045977228be7980ab', + 71740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1929f594706d17d7dd7407b4d5a0cc289ed3c3ac69f9b77efd22db8dda74c816', + 71460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aea2abc6889936dfc257b4f25d6785143daa40bc13d0ebc083b2a7961d3fb32c', + 71832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b6ce6bfddfc95ee57d206677dac580682b337132713fcee51adf87f80fcc769', + 71864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a390b1a71bf845987f7dcdae00da63ff3f355a80566930c71f64e91db4bf8382', + 71824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29f4b2be80e42b8155643c0dd8a292e0f5fbdb66a52d0ad4de42996f2ab28153', + 71788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a1ae08de0f2de9f48a692ae59996cd7a692ca1177a4ca8b7a08d9e95030f819', + 71660, + ), + }, + 'LexendTera': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '609d22743bad3df6691214cb236f3afd92a8deaeff4d3e4e98418ee48f6ed37b', + 71588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4f19fae7aad797950dd70db786f610c73d57a7947b3a94147c0bd3e7edb4960', + 71792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e6d83973fbc188afc73aacc50168edfbd20fc1dd61fdb30e2e727e87ddac364', + 71756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5d87a465b8fddd29ec08fe1d2347acd315727d0df4ab4e81c9b5fbef4931f42', + 71544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc2cf63381757ac13e6c876e73fdad358a77157d4e4193211eb12442dbd17e25', + 71888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e64070c614e60128b4d1e2c70460bf379cb1b45e05f2414229a6fb7e0baa50d', + 71948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10965b9465a433dfc36528705bf72d0c0581d4dfedb42f5bc34323bd9fe4d4f1', + 71860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0529342f01f0d4014f4c0c6d57ff282305f92ca531aa1fee81b41eb40dd6d861', + 71800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a0bb2e1819d38140ceb0ee3f4689e3ada93e269ed180c1023c3f1474fb13dbc', + 71628, + ), + }, + 'LexendZetta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00b97b46c2b9d615ea26dfa9c883e5d675013b6886476ea8a11d77aad834b663', + 71512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37c729628a90611030f838932dfb7f7550c44a7df17cab9aa3307cec970cbd98', + 71852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d292c3b9505ee96a2586d1fee8cb452feb03678de5bc1af7917af1cf0f59fcf', + 71904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b408af272da0daa1ead24da41cb4cbdca05d405e752517791a3c9a0ecdb1bc2b', + 71516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc381f7d212d1b39ea404c25ff6f1fa88fe7be44b7af198ea9dc3b411e16d461', + 71872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abaedba8e43453941227679d3eff308d4f6a324311010a62accc3cb9f4428e01', + 71908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2bb0c9a4af115ec14e254f998ecee4206d6a0a0c2514ee61a1255f634acca4ed', + 71856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a87efea783837ae71f57841aed0965a3730691c56ff86a3634e80b0ff80534a4', + 71828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b83c29e663b7d8dbc8df692213fef9606156074dd8209242fe5145c0c4f6f980', + 71712, + ), + }, + 'LibertinusKeyboard': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18853465f74913570fb2f9950339c0a609b2d96251403e83dac30dfbb37237c8', + 123892, + ), + }, + 'LibertinusMath': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db3a8a803d2903b2f10971ca9930b69e9ececd33c70b935d6a84cd8499e2d26f', + 773452, + ), + }, + 'LibertinusMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae010b75eb2b6d07ffd56f76f7cdd071ea7e0d05c5abe6d745cae6fdd3534b9b', + 104632, + ), + }, + 'LibertinusSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88ba7a8301a9c9730474c1252af1676e60912f3f4e0f286a161238614c12f682', + 301424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f46dda2a434d9ad79d639f76cdee22b0c3a0ee2f44882bea35ff33b20199f8ab', + 397884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f82ccf59a8840d2ad300f2dbab81558c8c371f3a0f023bf7d6b39e90e8cc232', + 310020, + ), + }, + 'LibertinusSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '602ba7fe34e6935270a0cc693f9b0e1aee5c4e31c281de4f30dc0448fa564d1c', + 371536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d95e281805c131c32ada23e45095912bd292f810f6b8188fdff3d27cfae0392', + 374220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b21013baf93a7c16fb5aef4125b6e26f8aa8ec50539f081e7f90bb1ac83ec546', + 321096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ab878e4f8dd815704e38232e9401ad091e5e7d337ce2e1e3ed896ab84a1a9ec3', + 391640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a79921904c4d233d65680d6e4027e91077bbd58e942dacc0c6756559c8c07de8', + 338112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '597e568f98d12de7c8432e30e95d80acfaae0871ce0b99835c31f93988ab69de', + 295660, + ), + }, + 'LibertinusSerifDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5c62c69b002a6e5d63879dd75fa283d17b843ad8af578659f8a10817d4c465f', + 470864, + ), + }, + 'LibreBarcode128': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '260e3d3d7c90c60b37a3a34095ddbfe9ae22a94d07e8272ef08bddb2ceb7f2ab', + 12936, + ), + }, + 'LibreBarcode128Text': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c290664397b9159e0a0d913f85c0a56fd0cf606e7071a1b6892d351408cc82c', + 29996, + ), + }, + 'LibreBarcode39': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a25d156d437de61fd0000652114599b4d454496b7c82a255a6c2ae7fce3052ab', + 7628, + ), + }, + 'LibreBarcode39Extended': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5597ea986d40d61bfa41f69d7be0b5ae36260ccc618c5efd4b6c852868b7c8e', + 10092, + ), + }, + 'LibreBarcode39ExtendedText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e37336e25abf7a323606fe47716a9f7b97c149583abdf6fcbd73a66cabb671e', + 21332, + ), + }, + 'LibreBarcode39Text': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf8ea99fa9702a9be34643106b0d77a7e990c3f25198ad9356164e1fd27ade2f', + 12776, + ), + }, + 'LibreBarcodeEAN13Text': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd600da4229dd5f01b7fc1f88afb6b1b4465ed38c36f9f82dd81e55227a7006b9', + 55092, + ), + }, + 'LibreBaskerville': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61bc993b7cb718c9783207e6d3fac74d629933bb226c775a6afc9269aeb9c6b8', + 106704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd26bd908687ce2ea8f49da4c8c3901a12296bf01c9039733bb8428b8422b8d57', + 106856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74be949099703f0b733ab2814436c0c442b75a4783d1b0e375d333db06ff5187', + 106824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a36d00655348c5478a3d3097d0c712503d1aa33fb9df8787c4d1f4ca9e4e4e7', + 106728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6b02899f6595f645e1e2eac3d5db757e223fa4177af4cd4ad1403e7ae906a6ae', + 109724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '58f70fe426368a8231980dd49e4b3514c47ab618208ce47b9252e36bb5cc6b22', + 110056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f0a6d542fad1c0017a203378c23247b9e23492856d9b5d4a23dcded8e3e54d59', + 110156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '576fadc740609d9c091ba38a74087b4fb48d09bad40f3f68a71096fd07ee6427', + 110008, + ), + }, + 'LibreBodoni': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81ec182b837c190e9b76ba85d46c156bb270a67bf749bbc4bd45a3a8d59d08f7', + 71940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5cd1a0f735bc49f5bc8819a3a9da3d10a87407e7516237612dcf157fe60940f2', + 72236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a7478f98731f68c36b500993bb82d578b4352965c903b4f5281908e1fa84d71', + 72296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93275cfbc63382815643671c842dc29ec1c84cdd72cc50d080a9231036e0e60f', + 72016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef44cfa0f0956b9764f4bc28b9483e18190878b94efaad8796c07cba2bdea09f', + 72164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c05a9c7cb9349e4868d26c8bbcbfcc4d7e7e44f578516dfab960050ec7e890ee', + 72592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f4b9389d31ac2e2a6f50f77b7d966c775f556ea0dbb3745bd1f7082d4caf387d', + 72652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '49f1566ea90d1ad0165b62cf8d161a6bb438d910d1994701a6aa933c5e21b3ae', + 72492, + ), + }, + 'LibreCaslonDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6d8af94b1b021b7e66456850a9cd86b6a4879bbab0001030f984a105a9069b3', + 63516, + ), + }, + 'LibreCaslonText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2bfab10fe10d3499c3f59f7eec1fd40735d93b6f72d0a780cfaba8574a70000b', + 63144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8aeef94a3ada41d22c976c7cf50b2d40720cb6b18af7699410a56449331bb693', + 68688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba4d1de3e986843f924c50ab2ce0b96afa60c8ad983169917d6689faafa9f5e6', + 62732, + ), + }, + 'LibreFranklin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73e862daf7deb053b15407e5a7d2db32431dee9fee017e2dbab08754603b9ae1', + 106120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6427a2fab6e77054ae38d406328071c7e73d73669837cea997aac47c50b036d9', + 106324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4831ff7e128ce7a0638925157cd0141d8790de1dde0d6ce7093b620b4b95d575', + 106368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97fa13b1437576fdb3e280534969db6d9d60df60f3135c7c8ea51bb4ad1f024e', + 106404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f533e0215ed1d6bb488554f5c87309eae8f33f0ac37ab1d60235871f1e79969a', + 106428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f18688846cd8655b6c46b40427a8f49eb3d05735b6dbdb0c3b81d8d7c5744fc', + 106388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2570b54e00eb9732580737320717ae4dde6bb6f419af4317712e3ddb73045571', + 106504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f0180e407be5e04977b00743cb589ac0445ffc8137f3f9806c07fc2188180b9', + 110392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd929f561a6bffc5781611c51584b6c17efd99b575122d5f2d6d247ea1a81991', + 110312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96721fa1d415aaf8dde655aa96525422ab8e04c35cefee2cea080115bbfb13c5', + 115600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f66012c2fe2e214943c2ae7ef3d1314aa70ffd97224ecf7496658e8c76f6c655', + 115856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73803a9813237b3340451d2460671d2a6b9f2a67914f82d21acb1695364b3eb4', + 115900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bb83ca3824626071c5c699143de1032980b05b040295454e0981ae4d1d3bf45c', + 115724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '10826911961e657f2ecbbea2e4d59969328dff448c899e767e15bda48c1393fd', + 116100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b79174ac629860355be6cba67cf9cc5cbe26dd9447ae2871128aec50f34b6fc', + 116212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47abee117af7c5b129f524766a972af8dbe8295a33720696439a74c7f801da13', + 116232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96a7e8ca537d87d874bccacbbe5971ce9be5e46d273365fd83581c0a8c885dbb', + 122384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ed5cbf2a7265450ffce2469f2f1b41affde0c29739071117d6d9c40c78fbdcb8', + 122276, + ), + }, + 'Licorice': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '626d78f306db99d6afb5e42cdb3d6d903e169661b7ab551bd808c031fc227da4', + 106488, + ), + }, + 'LifeSavers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '986e0903155ebfff814e89163c122fa58085080995c3a1f897637acc7c13e214', + 128960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad6e4881b1b1de0b0df602e3f41cda4d1be4dad8a20796a680ce94e6314b6cd1', + 128980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3994e4dae848db5d581054e995954e45318ef363acd50c763f388d5ce37fbe12', + 127632, + ), + }, + 'Lilex': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b99f24a5b03de63a46b12b6a782bef7bf5c7d7fd8703940486dd31a6e126225d', + 125384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6bcae54f4f161c3036318990a15279a85a3066abc10d3616445f26ef4b47457', + 125400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a73c904717317ee1f04ef9b007c5cb8e60dcbf881c75c1c8ac386262ac6add8', + 125228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd13db5cb95b89b9cf17aaba16bd6eff20234fa5a36bbe7171845833abb718c45', + 125132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '665b957d9f9017921d00a0576f9f3c508383519d2c0cb7e717e5590ee890c206', + 125088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55d03e426a51015e42d2f995912a0201be6e1d390e3a191a61656a293829ed11', + 125068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88ba76240295022e24ebf9b23d63e09fbec5603c4e88ad8927f23c135ca406a2', + 124828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c8345662572856f246d73f5de0b0da0db79cd48b9f541cbae72333a68e7e0e54', + 128696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1fa7b14c8a17c2ffc9880c2a579da57a816b6c71b5829ce2d029b36a26c20bd4', + 128772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4e6afa0b0d2b3b93c5c110fc1dbfc4103358eed5ecffe1c67c4e114d30cfc3fb', + 128648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '063782c31c02abc4bdbe3ddce0f09e1a970ca23bd95baf37ee8ef17fde97edcf', + 128512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c097c3ff2fab7dfd6c3079371934aecc811d1af3e97eca140670d250822f4884', + 128588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a8cf7c01d6fd0bfc862aecd10bc1b84adf2cb655a572803d00beacc399ae08a1', + 128552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '04016f81d08ea76ec84641fa9e03e657990015a46ae58519f5381b8b858e8e56', + 128320, + ), + }, + 'LilitaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9608d62e809e4a35b12c9b5eedc93a48141177cc5d62249e933535b3024dca4', + 26308, + ), + }, + 'LilyScriptOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'beafa8fcd270ad8e901a9e92f0a5ef7b39513a23b968e97e23551f3ed7e79687', + 34992, + ), + }, + 'Limelight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e217ae085639d54690b9c2df25fbfd783640d80fbdad703cf06e7d146d857e45', + 59948, + ), + }, + 'LindenHill': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b79038d2da2dbfd206664de112bc6f8591189eb3d135d227ef79667fddc6379', + 87432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c8c5e67180a038a2d45957ab8a02fab90b0e1b1c9b06c33543fb6b011fc800bf', + 72476, + ), + }, + 'Linefont': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd30a601ed5dde66b498f674b6db3f8f28ea49ae182769aecc9e3f0c87ada37e8', + 57324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63c734fa5875e603a6401bdcd98c2cc032b4eec912c9f46d6902efa8808234f4', + 57372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ec5a55fec5f94256197a01b7d14024aebd0806a35409f955860955de7899572', + 57332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c7b8295020935dd31affa35f4699cbe826217075de01561614af2a6b341117e', + 57280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '344ea2e0fad21a1a5a64962cf713c4ad67a38d5de1f241042abd27df61b94960', + 57340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c9a1d6d0284456b48cf050ba327239ea05668def552d984f329886980da23f1', + 57356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f016663c9248409469e4bd3e441a01b10c789595330f8726c48713b916624e30', + 57284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5a04b2b47cf671f4da2c5bc882fb48ebbdadaa7da18c2808e891aa58d8f38b2', + 57364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f715ed60542b0594710d11895495f48585169a53464a3dbe14652ade82138251', + 57332, + ), + }, + 'LisuBosa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11b323404c19cfe5ad33e5d6071abc92c53fd788f3cef479cdd4357fb79d46b6', + 39832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ada3eedecf43eece27650d806f97f1a60ee4ff5766680595390926972386ce3a', + 49688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '437c62894d6f50779b6ee8adcf19cdbf8cb23ba71988cc01eaf9926396ada126', + 39712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5a18f88ea09e4a4201c37ea494f5bf3741fc54d7346f3cd684c16c7e7925d97f', + 49492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '341a711334cbe076f5a3ba06324f4085d6435fe85ffaca7399c8b791a5cbed0f', + 39640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bcb031e0f41c99bb47eb02b3c2a03ff4a60bcae514892438ce11ec8ed23a88d8', + 49700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd59bb40fa1948198c7e46a5b7f938e8243e0b716b090ebe7057d624b0c9ec875', + 39576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8210d66ed93479ef1926539d7c9bada18ea94fe80bd7eb412cb0fd4eb7aeea58', + 49628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ef957311f52d8167fdf07df1a5b35a042ad44441f4e90c8861244bdbb1411ae', + 39616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a20ec113dfc0bfcd6123241d54a9111522b8e2b3459bf7e7d73bbe4833213130', + 49688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '738da3f5e074c6d354017e6c5843d12336a93518c6ad834e73da3e64b7229f11', + 39520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '895cc80e46ad720f0c3996c6a0ce60a7f3980b04e2648617167a2d135c7bd25b', + 49872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eedbc79bf128003b38e07f763cc6763a07b6ee4b99defdec40c36b4411fc77dd', + 39688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0adbbd016a8d2f3c4327679aa6511b5aee67bce72a05803cc3fd749199d8b5f9', + 50116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9311824e98a60aaf5955b18f3c2686a1298effa020ea3af306b7d3b7b34b4c5', + 39708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '52c857e7acfd0cde1c42d1f0cdf7566c5fecfc82d2182f993c9aa55220d065bc', + 50220, + ), + }, + 'Liter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf7b8166c35ab3f7275ce1f4af1f05f30245c0e827803a06a0e7252c0556c7d8', + 55176, + ), + }, + 'Literata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f99bb88fd48f6563f310b155ea6176ff8f73a343d3c585a3abc1422a818034b1', + 169972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c931f2b9b919d3ae38fe01097ad64038a3fb3ee3600cc2f508d0f6bc85a88931', + 170776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df89561f5555d0674cee91736ee18d6f85ca50e6a280e53bec37507eae5706da', + 170644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6df469837bc38531ffc4d60ce7106d9116eea96a8777a826cf6e854e00b629c6', + 170788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17885579f0905bb96274e0b20c13cc97f849775d6724989d3d430ecc9b995dec', + 170924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffa4a76cffe8c3dcdaf5ecd1737f9921907aa4d6fd5d866d1fd99f1adb46c452', + 173924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd7176ddbbce5bdc0e05e8baec43a2328856b87f5d6b0558877eba1464a07720', + 173980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd84158e9827d4d775cd9828a66c44d0936c7dc38aae3de0d4e1df9a8b84128f3', + 173588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c5f3247b2cdeaf28aafbc51d1332c084d79ac14779b22ecfd4788516db0c491b', + 166328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0734389bde6c75576e8f4ac0dddef84b0cebf58a7afe084a41def372544e57d8', + 166316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b26c41661f3ddfd20dfa1f40864fe346e83485bbfa4afbafc390297c5214aeea', + 166048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f361bdd122c137e029eaa5ee65d9d655123b59d9a87ea456900fe51a42dfed88', + 166416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e186b0a2f2ee9d79b5f2d908e15eedf1e986737ce425a46f969cc69c29f9f3b2', + 166456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ba482755c5209e7c36a4342e8930332efa1f66b0455baceb6f6d8f60423c6e81', + 169332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '81647b61c5f79a61bc7219a8b9c463f46801829414a697d511a1d5a2eaba8954', + 169472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a2b6d18b53ee3e9e80042fec0c1b773e6eb9c877370c46fbbacd4cbedde86f4e', + 169368, + ), + }, + 'LiuJianMaoCao': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a4c459db0f69ea76da4e90a31d311250b2bf461f9292eb4786e37daa5029347', + 4939624, + ), + }, + 'Livvic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '414a10e7580ec6e0d676ff26e9fe38ba6431e8b696cfaa89c316d9b0f4a6089b', + 79592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6d846374326b8096ac88404605d81c371b3cc4032c8dc3af83fc8095d17cc896', + 80828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac776f15bb8b6c36322e0ecaf78757c8c467154bac640604d5272b724b9c56d3', + 79796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ebfdfd276589cc024fdb49222b1e44691de675a77f30f205ba65cfb74b24e834', + 81100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '434ef2b8c849faba274c472641905dc7a54439e65cbb48adfda0a4308000afb8', + 79704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d3523bf9470dc2df363a4e459316e6df58cb7eaf34f5f0fa06a6aaefacc2b4d', + 81132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '819aa1b9b58f46e5285e09ea24d70b018040b5374a0a15418a4d134399f435e2', + 79548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2c08664dabd366bbcefa862d4efbb6d316c66faf8c1df4d59ad1056b83f0cf0b', + 81044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46b043c3b2e06af7d1fde37558da2fd15b3f3b25138e15b3581189e07d42ed69', + 79792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1de38fc775abfacbd22ae3af4a73d300e2f3e746fd4fab1395dfb236d4085826', + 81172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85210ddcd47497263d977ba89d093762b67c84dc7a0784cb8d5b5e4e627b9543', + 79940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ee9af4a2b104db5332cbccb9356195c7ccfd15a211b6eac92270542957343f80', + 81072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30734eea499cff8066df0a8f34e0620df9b7d1512f2d50e4bfb3a0c3a21e9533', + 79992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4cf6aa865f871ac42a7f547b11ed6c7ece1fec01db7277f43ef3eb3a87c8b60b', + 81036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce56cb1cd63cb9aa0743e24f7e60f1edfd98f248d976204512403673a783e0b4', + 80120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '28fcfaa506bc4eb898ea082688dd5c384689c025e011b1b4f469869fd1de3849', + 81132, + ), + }, + 'Lobster': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcc991b3c5526270f429044e4ffffe31f79b74457131ce78861ccb286f28ff24', + 201400, + ), + }, + 'LobsterTwo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6d7712f5b09d919fecc2dc2c7d45e3cb7e33fcb177f9dd9f6b104e1a67f4f81', + 86192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '59e87ee18f45be60e8f134a661844826b9612407a2029fd0ce2fc3a4e128fb92', + 87900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e28f61b77609a7b1bb1d935a2104341d0b5e95c4b8d13278a104ab950510bdb1', + 85088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3296840d8dd26776a1b3b4035e50cfe8274d33da7edf58122a019fc41656c963', + 87816, + ), + }, + 'LondrinaOutline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fc2ed19278d215fe23240374fe907ca7960583aa59fb4fa5dcbfe472b47cbdc', + 97436, + ), + }, + 'LondrinaShadow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05d8614f2e2b1a0193d341552e88984241ca7d9854e87ed7c464725c698a2cad', + 97348, + ), + }, + 'LondrinaSketch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e120f66adaa5dd805ca98005d520626b1995e6a0a29cfbded0245cac9fc9c9f', + 222572, + ), + }, + 'LondrinaSolid': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9348632393f204f3286186658855b3de3469193a0ca884838fcec9949a37b526', + 55656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b19098f313a61e786c451b0f6b6fdad975758e3e4bbe39e37508687b1b97808', + 57252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '517a5f1d02e55c27a2d170dae5dd1dd77a41bd6f73e41f097a5a66fbff6adde7', + 61240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '322d0c32db6f0a9b86334019441ec241c484a1ecf1e9f1e57a006f4e9b10485e', + 57996, + ), + }, + 'LongCang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4bf1aeb22fbaa403b36ca5ab42da5867dcaab8f32c1274ef587ea4d46c0ca5c', + 5150640, + ), + }, + 'Lora': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9b4141f57f365b3de9be91123b343311c4c292f063635d38b4bce7f6b19c052', + 132164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9173dc957c855415544d0766f962a978285c7766161cb1d4ca68394fdb2e6201', + 132296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d8f94a1d0c946a7d97ce4ad3c6697c1251b108424375214e2d60b92231972a8', + 132648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab1ab40116296c0df36bd1d714a4bc32f6d6d003868d01b4421106b55593d926', + 132100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a1c1b5ce4c23f967575ae2c3284d4a60960f9571f0ebe92b8a91e6c1408ac873', + 137304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db8c608068c0b4bcbc75d33b69a75765fc4a99ac2f83f542c6cbbae9a02fe6c8', + 138264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e2fd2336ff19cad12a5b7153d9977b6daebe39c2d81f7c4673e93d909a2c090', + 138404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '63f2549223fdb2319965cd17935c78aefcb609041770cf87d83e4914a4b2ca32', + 138328, + ), + }, + 'LoveLight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6285a86a7d541dbdf09dfa452128461db9d9677c0e1ecb5db34c8386849ecff6', + 102772, + ), + }, + 'LoveYaLikeASister': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14f984111857efdce2eef5d32b761a265155ca290b496e43ae5c4fe22d659e36', + 269092, + ), + }, + 'LovedbytheKing': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bca936d0e3732555d26dd50201a6ffdc3fea2863bd378d24a560fff95fd87521', + 24648, + ), + }, + 'LoversQuarrel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4b13cc176e063e395bd081628173a64b44899f176fdfebee46fe265a7173e0c', + 67276, + ), + }, + 'LuckiestGuy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4f869794d4cbddf4b71e511364d211e9e48f6c1bf0a89064b815db21c1a81dc', + 57376, + ), + }, + 'Lugrasimo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2e3f9802882905cab96ab9fd3beb0e08a58d5f635f2e7b1bb153449ec40fd83', + 31752, + ), + }, + 'Lumanosimo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba8f118f4dd79156516aa75fc454097d2ff8edcf18926430905f7cb62282e000', + 37996, + ), + }, + 'Lunasima': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9ca470cd41f75f15fcf7c2f1d9bec917d5ee0e8f0c5bee1ad353cfd6bc0becd', + 193324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6cf4a91ecd17c5c17cddd4e851bc645caad05d4311f9ce67b1f14e35eb286a0', + 194644, + ), + }, + 'Lusitana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26eba623fc98d5e3879e6b7b65285a69705bdedfce90252c7eb0ea28e276a43f', + 28212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '831cf4911542470dd59bfc0fa8f196419650f30bb2112e95c2a3cc7d7784b59e', + 27348, + ), + }, + 'Lustria': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2d3a728010873679910a9d36cd468b6fb4871104e6268a976f53428c83d8668', + 34804, + ), + }, + 'LuxuriousRoman': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '315c968c2288555096616243dc156cb0880bb9523757942ea3972f02b7b1910a', + 95244, + ), + }, + 'LuxuriousScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62eb660a4eea2e094cffa8e83821590fa41ea7e4eee5ba436273051b360e5191', + 129504, + ), + }, + 'MPLUS1': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6a2d7de2b8a7e32e2fb52b3558177b9e348a124434c1d26468f6b3358b7b571', + 1712248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af9801972ab7d9f7721ff0ecf2bc87405674a80e9c0774cba85eb701ad3a9d0e', + 1724136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b5489f03f7f030686e0589e78ba2ff1f4bd87b4eb4fdd0820443e17d4bf587d', + 1723452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8766e5ca7f1a327d1b1c4f2b5924c49ebec7af53d327ef8010d2d199a16a5969', + 1724124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b365d527af3358f7b3a0e53b8b306e602804603c8b6173db11cd70eeeb43a45', + 1729648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49364bf55dac5f2301210950dfaecbf5fcf820376f2e36c06f12198d7fc3c33b', + 1728804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '827e3f2edd538887d5b33472889e86b3ea801a575515e64822d1dc3e83c19b22', + 1730316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b24d1bd1e926c548879026f08d7016b43bd3e1459820c927aae4ddac0ce151af', + 1730264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4aba90cebcf14cc6d0b136598d394b1e1744abe7945ada6a90ad4d8ee2bec3ac', + 1723912, + ), + }, + 'MPLUS1Code': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee589a6cfd4a43d319802a239d96b243cb9c833ecd6a1637260d89ff56a8324d', + 1682192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd20b2dc4dadb48a9c9e27305f1213d0dcd746841defa7946ba56294b68602704', + 1681876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3621940a475dcdb8aee79dfd5d90cbaf62295df9b0c71f765fa130824d462a0e', + 1681184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac70fc99fffb5411d61045dc1136e40b759756c8ac9d1c8c3022ea9e00b7975c', + 1693520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23c365db1982d3ef15a0b734880c4d4a3b662705e0de51faf42750c9674eb082', + 1700232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1610258303deef73c442a6e7d5eae091229b0ae4525f5978e6c456b0712a77c5', + 1698492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c462824bec640c63c213efbc6982cbf0e655f8079999b2068e43c2669bc2dc73', + 1699336, + ), + }, + 'MPLUS1p': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7a65de45aa3f4388e30b58fb15656c3a94eaa547c7425fb9c49fbb6e2cc60ff', + 1726044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30af32f6656bd6300b725101ff759d124a23be1e1ed9b16e6fcc9710dd8752a5', + 1721568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '160c38aaf943fb13385698d248ff589f402756ddc6ab702a632e4893426bb2ec', + 1713156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f01f6a239acf374b53f647f771b0afc480462a4bc8c0b96ffadb768af9dac9bf', + 1713168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8fdcd109d276a810523c19d719a458600efd6b55e9be7b93fe83a7b41e1df2fc', + 1720668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3cf38ea9c8892645eb22b141f3328dbb28d6ac6e274ff79e5eecdcbd2b62576', + 1727560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a873fa85033323f8a93a11fa65da8ecc4a607467cdbb908a0e14d0120c67f7f', + 1727784, + ), + }, + 'MPLUS2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a760a5c3d24232b31ece7cc8ad0e20a3504d8d0879d1e1f3b6a6ce021dc5f328', + 1714864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b39c78546f58cb7a335ed4c88ea493959ebe11f35ff9a2b47301ac1e1a946d0', + 1726752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0764ce7f6ee553db1afde4463d8c237ba5c7c0b343d67569d6d2f9346db694c3', + 1726092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc6d60455de4e1c3b3502233ceedf52b184b7dad5b7ad6061b03596c1f4e3051', + 1726728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7f27265a74910a4518fee73a132c7f339adc3173208ba0e160ff5af09a57c43', + 1731832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '784193f3ca82ba55d34bb628d4097b1d9af1a36da091056350878afa83d8b227', + 1730968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff926bfbcc5548e2aa8d48e9d06dfcaf49e08b0acf48662337b25d8a725cbbf0', + 1732560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4da46e14f2d5c81a71db8ee6a0ecce0bbc0c89d4d8989bd140411dc9f5fe7eb1', + 1732552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0480fa5dca84b80ceb01d41e05f414c36980818b4f456d423c959d259259c7a2', + 1726200, + ), + }, + 'MPLUSCodeLatin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b08e6c04214245635a8b8e6bb690c502cf7b5d5635fc8ba0994f4567f3b6fcdf', + 45668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64542ad955aea74c41779170320d2ea2df0ca05e6d619286b1f0397742383408', + 45896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bba53840ab4d875669c10682503ade244d47a0cfae4ef9f71c0316563eeb23f2', + 45844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81b88807a6f1f32189c8546f703af104ddf2372bc6c5a0b70d264d9e527846f3', + 46588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6cfa0d5f51f45782730f91def221f578a11dc7fb82635e70aacd69487c93591', + 47244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54e8113e1e9016fe7cf8ec286a808f2fd95dae8186c8dfa3f6c33b46772427e1', + 47256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a8ecd18d89b1c3c47bd4b4f0aaa24d2166c833f833c7f6ae887e22597bba5a5', + 47088, + ), + }, + 'MPLUSRounded1c': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9898083d91ebffece4be7b30cb82f27812d7d55807636fd26bb973d35acaeaee', + 2826364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37f7c825858976ee795e3343b3b22288d7357c01e8896d3c7bfc2b3d9fbd1c3b', + 3201440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0c21ebf6da2d09232143a54dde35af510dbef383b2962e3528489544e62f6c2', + 3292944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ffed8bf4a305e697824a7b3e4ee957cb6f375bf997eedfd5576ddf9b1d7a15f', + 3334428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9ef3f95ff397f82c8af5b1ed6d5f0c3ec7eaa684067724988caf839edac7f75', + 3442128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa410e2dfe3d14c83a568b164786b24fc5b47f4a8a0c6f059df58b7110c96295', + 3525040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '008f28da777fab5f4d296959c34ccbc8358072303c69680087a1bda5298815d2', + 3531604, + ), + }, + 'MaShanZheng': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3711afd50018b397c0a6eb838eec1ae432aef7f02ba1652eab9320567c72d409', + 5855716, + ), + }, + 'Macondo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74de73a4aec59094258486126f30f3bf4d13c4b5260f9964a17a955764c6373d', + 46408, + ), + }, + 'MacondoSwashCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ac3ccff3148d04a4d1ec6853179f15dca2ed2c40cd12449b73210eacdaf00f0', + 31072, + ), + }, + 'Mada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aef399a27c7a9331498f6f63455b066aec579b2c10ef655e722a9b093bbc89de', + 95940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd459584cea68e66ec3dbd1d4627cdf99c176ea65b50885e3dd2ec14301ba89c1', + 96304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '684bcd2e1e15de1d9741cb91b957bb9b63c3e6df2c9ec6a0608f03d204ce7201', + 96276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4bde9d7df88bc9efc057d36aa06f862edb84f7bc943ebe6c0d84b247b1d42ee', + 96340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'adc3d7293c66d3b3295b1cb139f0d3653aafd579fa7ccef5707e4614fda76a1a', + 96448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8b621d9794bee56402f5f192a86f4cd2b7f3608df52099b2a684b12aee98759', + 96388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4db488acb2b90999263dad4edb8995e937fc901e13f3d3c5f9f256d32dceaa8b', + 96424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3fe92843812b33b3c584b9d72370c6d3f55308ecf89e848df02e0c775266b1b', + 96104, + ), + }, + 'MadimiOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c99bfc920cf3248615c1e9f9d9770efcb3c3085856654bad2327cda3c15dd79', + 77004, + ), + }, + 'Magra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab9e749e173ea7b8967a43de1a1bfa360b92c7c694f53b0bf83e9a98e489dbe8', + 40800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '266715831fb562b9fce9892f0b32ce08ea381f3fe0a6b0dd8d0e8e349aaa434f', + 39872, + ), + }, + 'MaidenOrange': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d69a68816aa3d4a4cfd7a863f00dc239d211a994fb1afa3c29eaf4f01acc7f4', + 45632, + ), + }, + 'Maitree': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed7492a71eb5ae40881e9b739884b2b37a8c69b5f36548d6e840793e1e91e536', + 119800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c129820a6c4bf5497b020b05d03d4a6e9f0e7935d02314d92dae08c14df3b625', + 117100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68d22afda0699f2e7580b0ece2a9a0611a8cb2c2df6dca6579a564f4b5b16877', + 118484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd54ba62391d6a6c9ed6ba5aba010e522f19f8a16dc5aa470b51a292c6af8a8e5', + 119964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47beda10f5b4ff10c65c9d9ca3b666a0999bf62e0010ac2c40d28d6bb1bf42d5', + 121252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f10a75dcaa50092ac716e6037eac3a1d746b08cf7dc10e8bfacc7e8200d03ac', + 123064, + ), + }, + 'MajorMonoDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7396fa62aae1e0c350e023060775f55da68cccfd74b3c7d4f5f7eee87c94cd9', + 73668, + ), + }, + 'Mako': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91373a28f9c4eb37f5c0cc92813eb4f33500ef24712ce3d16d254424608ae91e', + 50928, + ), + }, + 'Mali': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa023b84089dddd968aaa8a9af85114b2432be3eb6172f99789a3ae7bd543ee2', + 104272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2a579f4d12bff42168479a54a31095f70747a8973a57b69b936e27633189406b', + 107164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c59426069511ffc36bdd5bb3670a0e38378f6b3397f5ffb79ef914af620f6012', + 104480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a39afa524102532b9d18e19fee097806158a1701105a9943d917977833baa598', + 107336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aaadb63184a80bb24d7816775c2dca9190123a18d7a83af532328184f2ea7f32', + 104556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3d26f3cfa8067a8d6e86dd94e2264b68f4d17e23c9ce3c527d354c7ed39567dd', + 107620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19a953272fdd4907ed7edf681c73df68a70870017f72fd1374142feca6c166b0', + 104600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2396956ede92acd1819c0bb780574f281f94863dea661b8a635e09e6a3717962', + 107608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '478cc94d5111b74f569e558686104f2c27e6ead432329e143a34240adb5f7b6a', + 104640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b338a71cf893f3f34734911899abf29613f579a3fca432cf5443bcdfde1a417f', + 107596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2945ab4ffbe01953a44ed5a1c249edd40c649ef9be29fc9b035ae184867dc813', + 104032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7a0ee262e2e1a053633d5bfc8e6b4af7beb7da72f1419dc3e08dc55a25a6d398', + 107456, + ), + }, + 'Mallanna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87f24c359879c49fb9820d515b40484641bd2851002fa1ef61afe060fe8aa0a2', + 350548, + ), + }, + 'Maname': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67cb891f5f83fe0a85f4f5f4f0a493c5c5ca16838e8e6d35887319cc706d4e48', + 246808, + ), + }, + 'Mandali': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b547a68a72360554fae63a56f9cb4aadb6f734a81981a69390cab5c81558264e', + 360000, + ), + }, + 'Manjari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '912dd96e0a4f620b091ddf0e154220a191455b2d2500f8081f4a5d2bf81d9f4e', + 150024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b730261f430d77bbc874d87833cc835f746bdb385e26074d70155749f4033af9', + 148744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddd0cc5aebc7972bc4729f41527b85ebb63bd559b74d773ad92b4848e0f6f00f', + 148388, + ), + }, + 'Manrope': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf40c4c0abb2d5f04e0128d022f23216f2fc4d8094f928214fddb01f9810585f', + 94848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f3d91d5b90f10d26b82559d7bdd4f5acab7be00fc87f5279106687e45a08cfa', + 94856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be2c40a58fbf6c664a5103f086beaad13008d72dc642b82cc214feaaac3b4512', + 94948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f85a9b09c9449d2093b67354ac5894890891fa31daf02c470f0d4206b1e03f2d', + 95036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '126493d07336a0628d130d7a865098475284fa94364fc4ae76fb689278bbbd93', + 95072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5e0482988eb686e8fa2f6bcf586f627ff39c1e9305adc90ae07edc4130ab378', + 94904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '574157e96dcb3b1dd593f4fd26d62a752b395f6ab94984d1a23ed7570e5391ee', + 95664, + ), + }, + 'Mansalva': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b7d3dd68f1a6df3e9c3c1194ace764159fee2498338d3b8af8d4fdb7e52767b', + 252920, + ), + }, + 'Manuale': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c5c2c109a81886927f451ce98e98abcbe937e63fc24a33bfc6c9b51484d6ec4', + 74956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b9d9c7e2e8797800949fbcb7113583f6e2ed17c50d91bbf40d9be41b734fda8', + 74784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '579a1694745fe06ca80132b575b222ab4edf8277ba85409ea093b8a0699137b0', + 75444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ef583bce2e63150da7f388651256c84ee2dfa4874972bd872d58f148c8f6cf7', + 75532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e46452e4dcf888761aa56cbf15fc788198ee1b55d07c90ecb295349a77f48665', + 75376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40d71d82b2b3dbaaf75165b32f6afcf4f8c9b9fa2a5c826a3b8cbf60a8e59f2f', + 75488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ffaed97f9790c7c13b11a8d83637afaf1b7cca4e838f96ffa17deb079c7a097', + 81672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '12f9e389c452967de49a8b0a2e475fcd327cfe7d62b91b0e2ba50afbd43679d2', + 81400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '188fc32dd97b437675971cb3f5458dc52bb067c2b66ff281801364394b1b7c0d', + 81632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '64f5be17bf01bf6a1f1ad891e2ca83ad41d758c950d497edecc17a879aaa5e1b', + 81608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db95a7b101f26db659af7d58045f8922b5919e6810c9d9241086a5ebbb2800d2', + 81484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '44b16f76f97f5d1ba32290de2a3074fd7442642553c16146f9ee1862073e4981', + 81948, + ), + }, + 'ManufacturingConsent': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fb33864cb79621456d1b292a6d6f4b45189302745cb7d10aa627708d4afb594', + 37608, + ), + }, + 'Marcellus': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36c13b60ee87cb37ef9f50b17e4b088e0f71900a0eea8463e8473fadf8911c32', + 42872, + ), + }, + 'MarcellusSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eed20f04919f928a8a97789f43fd792b73f3d5bb2f2de6648227a511f15212f0', + 44032, + ), + }, + 'MarckScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cea442ff203ca3e590f00f4f98c1e879742979974df977735cd658c1452219d', + 81184, + ), + }, + 'Margarine': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27203d30148332203ac274969146d0317fcf010676d440870055be319a2f8dde', + 146292, + ), + }, + 'Marhey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fac23c6833f96365712dea595dd9a9ef0852f9fc69a636a8ae415bbfcce6ff28', + 87732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78c78aa3df54fe1513f2709a5c9b02d8f8736d64a0a16a80c4c7b9096bf1496d', + 87988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a518426f3bb5cb0c976376d0c3c4784a52c32d62d3aa78ff09f7d4dcad215a41', + 88028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ebd23e33f7d1703d9b7d0aa937990ef1204ddebe6b8cb9442653be7d71b23d5f', + 87992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3124001aa95bc575dd6fdf18dae55f5badd494f468d5bba9460e055889e8d474', + 87564, + ), + }, + 'MarkaziText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0fa3bf96ab330a39a68e065acb14d21d3821a6a1812968012a57fcf14533d19', + 181652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f1f4bbdd0f8460ffa8069176bb8b259cadeea42343e9b42443f7d49b4c94592', + 182228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f91f35a10260161549e4b013af2c9707ad55131ea8dee27ba9ff89c8793f3396', + 182384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5c3dadeee600102ebcf91cb5eda026618872cf4a5f98637325888323d0f7043', + 181896, + ), + }, + 'MarkoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5c2204df5073443754f4a94242b8156011db717d3fb4d5f787e92377f4425dc', + 31400, + ), + }, + 'Marmelad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '018cc24174eea062a7c9544c1ea94c3b02119e2d43d3e42067c00ef6e245fd49', + 102584, + ), + }, + 'Martel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5aedff049f47432d5bc55609bd160c14fddfc4e7bce3b99ab66c513944d2f5f2', + 116348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c1251c4a8136bedaa31d989e2cda1a560e456d2057e91de1d204ab98b1c6463', + 117716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8adbf3fa5b35501a50259ab0c6e6020f00e47e0d97c05056489e035ecd1baedd', + 117388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d76e2da471f54a8c54a7e3a9febc2654e89662413637194b3a3e0d8bb12ff4d', + 116792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e4e26aa98302344d9038fcca7cafb7c53f045fcc3a62735bc8659e5031e6bb4', + 117084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f9c046a570d0136e3b46a7b526e199ee97813b795cc1954ac9d46dce261191a', + 117668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd193d53d55ba7eef6866c0c460860547b6067f7e5c81641280eaeeae03cc764e', + 111108, + ), + }, + 'MartelSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '946a77a7d247e32a867bb2bf78b60f8f508316ec538db0bfd64404f1cf348a2e', + 103364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eff28d226dce152ac6d813d98dafd3a4c61e48c2488f3ec8733e619a95cd3149', + 103164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c2e9e43aa4c4eeeb72156224cc974c76aea6bfc823fbe06cba43ee0a68d7c83', + 103204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7cc76f594b6a70a789a3033dae000253f17bee5520916d58844f757e9eccad77', + 102412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e891003a14a61306190e57c296d138bb1e82d6d5b0e0d16ddd77014c051c258', + 102480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22000a4ef8aeefb782118341587a66ff946bed19ca74f6772abe15cd4d3f4052', + 102276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90b518ae39d6e75cdd97395592da90c6e586768e291de0b616459432194f52f2', + 101916, + ), + }, + 'MartianMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41dcb10593a056ab19ce3a8807ad350fd25b56932a130ae01104761b448725c9', + 45680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b683aa6d086b22a34fd0f8692b9e4371abd4b85ff0bf6a50038ff77fa794aa9', + 45780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cea9b89bf4f2de9e7b17de41e7fa7648518f3858daa0e4fc9b76afaaf03b7c6a', + 45752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7e978d6b44fdc450f83592e9096bec34724c755f6ebdc9f70e260555b7ff3e4', + 45720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c38df3a9124dca43eef866f38c997d543a0f6a9b35d9510bd672f4360b758b9', + 46184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f769524712c86699fade61c99dab275bb759bc753b9645fc87ddad0fd4f24922', + 46192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd8fdb5bff1d1d1ed9bc9100bddb674708ad38c939aec81313d1e4174cd2d960', + 46164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30d32642db7b553fc304a03f80d50f7278ae3c5b2f936d21c92e6d7c36271008', + 46188, + ), + }, + 'Marvel': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b86a4eb48ba879e830ebf52255f2158db92d54dac0e33870a5feac96c8857078', + 36528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd3cb548bbc83461d2bfbd4be9ca576f5f96c0f71caa4e6dc9d27a5d5e4689673', + 38960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fd0abbaea519b056535dd39bc00366494768f6573ea144c6d5b8a7eae5207e7', + 35284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a8f60c60ba51a7bb7b9338436fca61dea785f10760b20f3a1a0ce81f2b7a491', + 38348, + ), + }, + 'Matangi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c9fafd56f954a0abef0281bfd63834c266da6794618b1cc08a736dc76791d12', + 389948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77e50e9c639520cc3fdd7e8b6a1cc1f57a288c34144fb7dcc9ee9417b1248424', + 397884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1683428b8674572d4d6641b391d3d6bdccadab94359ede2f15c0d8d4b559f8e6', + 397716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '949cccad892f3fb3540fa4658682d54d3cceaf73a12b44e5ac836fbe0c6d0a57', + 398076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55e405082905fe663fc3daa11b6d64977c206acb6e187ee55a8635de73923f54', + 398512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61be23e3c7c3462bf4b0202bc7c0c32cb053fb3f05782e3f58b48fb78767a852', + 398092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7dc41adb25b0c7b35bc1f3e8f440c7e5eec245ddd798be3cb43892fabc89fb24', + 396956, + ), + }, + 'Mate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f54b46acd9b3910e0d1904e552b6e935e2f509f926e9fb1df353715a71389bf', + 42956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec6907f3c9362c05f1d62b297c5fbb870a2abd0eaf0db07c25cb702f4237bbc6', + 43224, + ), + }, + 'MateSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '837fa1d75482e47d7eb025c689848143dbf9eb1bc41366696193096a79b06b2f', + 46196, + ), + }, + 'Matemasie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa007f42fd7abbffcf5ffaa9594b1c6e1ed4487ddeaf2ff1b9508ff92a3162d1', + 94992, + ), + }, + 'MavenPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9391c658f2e9da93041eee258ac1d92ff004d1936344d6f1676e38f872bd0d7', + 55408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8275adbab112d369d9b45b206d2b92c2054bf8092ed51cafb7b53deeb22a9213', + 55700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ffdd7fe279e0a77a8ac074d2e24f3489ed4a7555a204181f0d01283a879210e', + 55868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '516263c8da633f53294f2909310dddc676e0def903dc8b88f1fdd93af4ad552c', + 55760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83a3eec49a1fe006623443773916d2ab10f79a2b88d2be00dbcaaff50a54e011', + 55864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d151ceac50b3f33fd2d95a8f87e6d43556146489bb282b988b908ad7def7b08', + 55732, + ), + }, + 'McLaren': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc647b683dd86f7af168e13748ced9571415848d658b82879f2c6c33be0b5b60', + 52032, + ), + }, + 'MeaCulpa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd023c76e8059f92dee7670423459b2e90aa69bece467ee822fde624d8c7f88c', + 108468, + ), + }, + 'Meddon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ce0174bf339e2ccbb3f546b3fa0b6493a519905a7e56652159e57bcbbf45821', + 63120, + ), + }, + 'MedievalSharp': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '09581df75e93630b414ee30b25281e4a961596987ad4cdd162f3e8c05442baf8', + 48248, + ), + }, + 'MedulaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bbeef40caa2d1e793c36772e11836c4a78d3f8f0b59b7a17fca6198fe21eeb3', + 31792, + ), + }, + 'MeeraInimai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a54a08c6df6499fd2210acf782357526bc0b3be39d6ecd265b8ad9644e18f465', + 70828, + ), + }, + 'Megrim': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '459861252ccaf08797a364f8e00215e8dddb3a5d38533a926d64aa31dff1e206', + 30136, + ), + }, + 'MeieScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a83d51e9d047341e9c0357e3aa9890f13ca19eb632a889190724599cb736d1e8', + 52328, + ), + }, + 'Menbere': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '155cf68ab071eadb3d55623ed2dc5729036c384b96a8c7c27e73247f8ec29a2b', + 1462688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff40464cb092a1016d42b4f93c1ab9c43a9ae6129bfb84887daf6891616738c6', + 1462808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b5df9bceaccaebcab9342481cbd817f136a7e8469393abb48ff6a3b7c04bc91', + 1462844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd57279d0669596f400e0e1024cac7da85e7142bdcaea08132a40332d4981732e', + 1462620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c7c92d1d804971b0d9111181591a85daa76ee40de0157bfe2478c87140a7b231', + 1462848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b276f1af46027750a318a1ce96b85e6aeefe88c9e3c8daa4feef8f3232ddd983', + 1465120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8983dd343dd0ed994f9036caa7c4339be503da9e2dbcb0eabfb11e097d9a8869', + 1460840, + ), + }, + 'MeowScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e683b315f05021166dc74276b4619e736582002042a9eb22c4cd5b494b411f8d', + 101292, + ), + }, + 'Merienda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2e1798c03ee1e30769ef1d79b7019281d99d96bc002ee1d261996e53f15f63c', + 85304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fdb44b433528b24a21d01f676422bfadad7ea2301a4f2931e32ed23a0f91d84', + 85244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7324ab467a57c1f03e9a15c1e4e4bce513fcb3906a9f44f7cf9430e6e294b357', + 85280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc0323bd0b1492f5d777eb8f1d5286ff04ae48096fe3d019b4d2b4f914fa6ea8', + 85288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b48ced0312595a77aba843c800597554d420a55a0d046083d483e3baef8422f2', + 87844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e330cfcba36cd03847b6d38b55f5a91587e53d9e45bf7cf6cffff6e5da3a7189', + 88256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8563807e3cef998f242fcf29b9678ba1f57f74de1a75e4c14aadcca65d9e6cf', + 88016, + ), + }, + 'Merriweather': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ae778dd2e165be08d5979961e7f29a3198fd7e0f71bf61d1d8df2b824a9f43b', + 585708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a05a93f3e8c90b815dbecae2f7cc3973dd5100a2494d3f2546cb4d3ef4f94c8a', + 585952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49945dd5c14d52a34bcfcb07f7f9f4638d4f1be4a994aebe0155e5d3878076c1', + 585996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2427c08282955164796ecf059dc120d79f623ccdd5cd0b37578beda5073694d', + 585996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0b820b40d7da5bc762a3e7fcf1b719666a8091c07dcff8a29121d378d6f3cf2', + 586028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8075f6c64bebff94b1ee64c1fa5ac9f17a11218359cd470292cd0fabe72f301f', + 586060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0354c0b049ec53ab1a342cf391a8eacc1f6cd32037a82ff142a393b122134d82', + 585608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8a8207a93ce6700bf12d7a3dbd61a94fb8e32a3944183e71702f9b3959346417', + 595484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3873f318261d58b606dba94e33a6367462f009553f054e0f6d2746cb67715548', + 595628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4fff2c4c664dee636688b6ce08356fd17771c98b0cfc8fbc39dd57e1c707c8db', + 599500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a61a15890ca10539b63d18e2f8265f0b281cd8932fdd486ed631969c599d235f', + 595844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f425d224d1ec74852e96e0bdb3dfb0099f4a162bdcf8700b5fce69703db93c57', + 599476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '52281f51e22d6e6b76f10c02a4e8777b01f53b8d805da31b31d1e7e933de4b2e', + 599516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '03624447ce891b6bc213c38bc0a049d789317986a09a1af54660effcecc2d123', + 599184, + ), + }, + 'MerriweatherSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b03a601c87a0237175c418995180fcd7cb8047130c9ee93f21034d4bb813f31', + 90984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3951b2c1aca6270c681697a9a54b1cd5d30a5823beae16fafd6565b7bc0aeea', + 91132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fbbd2fb6282aeae31470b675dd2de19980af4694252263295095fca93c0441c', + 91132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62da8ff08c7b8c484ce0a5a8a913153a637b9a09ac9e193eb260643dbe64bd6e', + 91292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e20796f89707b4dcca849a44092c23005d6235c45983ca262d67f46d2792bd7', + 91224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bae856d10a97c63089bc285c4d74af1b768d6478150e7d6799a77443e66bace7', + 91188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93be9276372f7e08027c3bd344783fd39a8da8c242b3a7fa7f1da9da4de96af9', + 79828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3def14a6f7cae6f56b8b818de88d1fbf12568c9a55918ae6851297a77aeb42b4', + 79748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f0103d263b298c8777f5db6d9a2e7dfd6d5335b1efab453bf6a3d8986024127', + 79876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '587284f36e81a4863b4fbb398d1242ad089885ea5c066b3adcccc78daa0a0b9c', + 79948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '05b56e0e0eafcb18674a49447b5bdf923cf977973aa6a32c5cda3f388354ebe3', + 79936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd6922745fc2711ecc272381c42ef2fbc2e78477a35a02c5e5f831ea602555212', + 80044, + ), + }, + 'Metal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2976291ccca91f54e948221ac8bf1d64f04e11209a5ec31ed792f8a80cf2acaf', + 97388, + ), + }, + 'MetalMania': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be4cc6814d5c805521791c6ef001682f652871ac922e03af6f723788550da248', + 208040, + ), + }, + 'Metamorphous': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24545f706312cbba7740c627e8fc6d5bce78826c8bb4518789c26a6d042f608e', + 63740, + ), + }, + 'Metrophobic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f554ec6eb74062d596734ae79c495ee2ff4f7167066dc34e44f3fa38fb75b05b', + 53212, + ), + }, + 'Michroma': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67137a4cb43b334b3e07a5ca63af848d71642f9e2096e0999c196b72b748d743', + 40960, + ), + }, + 'Micro5': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1459ec4ae29a19a2de46e161b1e2b47d4de31e8e70037c1fc52bb5a8407ed12a', + 28996, + ), + }, + 'Micro5Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c610ddb56ea4694e14716d029e3ded55a8c6aea7e0132a0266ac763c7133e71f', + 131628, + ), + }, + 'Milonga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9500dc1f81dda0985dc9350b611732af23024ce21b28836c1dd49c6cb7e4cd8', + 120176, + ), + }, + 'Miltonian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '058e31c550d73076d28f8265333b1d0c9836babb5cb97c4faa388d60ddb19575', + 90836, + ), + }, + 'MiltonianTattoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2db2078ee159402807f5b24f63faa4089b7805c704cb3ec289b8fec2115cc171', + 68524, + ), + }, + 'Mina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f3c692da03b05b3616561ee088851bfd6d0e04edfd581cb19e25d94eedc9dad', + 147136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76062efff069977edee6694c83378914b500efe1b6a7a41b6e408ed778fe1532', + 148492, + ), + }, + 'Mingzat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc664cbe60ea241e8c160c2fc5fa296c014fb5efbc2dcf37b0cb709ffc75f20b', + 155536, + ), + }, + 'Miniver': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48e1c5e1dbc02887953fba2bd3b26589614ad9db10ee89318c74548242cb3588', + 43804, + ), + }, + 'MiriamLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dc73cdeae26ea934c771d18643c66a5b1da9a09e13aa683a0a1c1a70bd4b3e9', + 74268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51654ad1531492ee6c70cde3459324c2152821ecf88c578d0a5345f67a9c41dc', + 74404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc3436a5cfe65765efdc91088affe5644ddbc5ee43f5f147c3da3929d94f2e86', + 74468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60f92687d9702ab43f2b25997b151da45d03f0ca7d36f1ebb8ca8eca0500168c', + 73188, + ), + }, + 'Mirza': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b569d1b4dd896a19edebf24404d783abb080a5a96ab058630937414a5004a819', + 153264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f4adc9bfa01e4fc41d77a73ab065990a406248a260ab0ad5980b8cdf0e42cec', + 152660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd79e58b7735300e45659f3a50d6e11ed565f72e74c826bc538b0e8555547235d', + 152604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '82563dab6c092d09b803be81f0279c8e70174178dd84fc49f4e046355c37e39d', + 152580, + ), + }, + 'MissFajardose': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1da5df773c6c02ab81b8320fe01ad416f29da98a77c66a0949aa686ccc97927', + 56960, + ), + }, + 'Mitr': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '576c33d04fea158b44c45b56666e0400123f103f6c1c730f5eb596481911fc6b', + 136672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5601b94a410094fbd36d53e436a3a384536176e25e3ed50063f36be2035bc9d4', + 142208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8763309112b79fee1ef609c080aa3b2aea0a3292a9ade1d26e1fc55ebc0e7494', + 144096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a34dd7c7722abe0336318d654948c1ce0a924c1cfc7bc0c674b9c592bff8d99', + 144076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5585e5b4fd44ecfb293e06b5536e7b7a618739f75eac516ba070079f9378a8d4', + 143588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd612504690d407dbf12f1b2d3e786e69bef751290807d1bfd39986d23fc4c5da', + 144164, + ), + }, + 'MochiyPopOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b89ae3bef1dab7e6a21aea50c69e909277014e16e685462453fb34a859cff964', + 4607440, + ), + }, + 'MochiyPopPOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffbc63529cab64b0a68771c717c0f5a90630f86a3027bef19c9efb8533526558', + 4608112, + ), + }, + 'Modak': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '582865fe7e73502b4024f679926e125a744f5d9c76f1c629ec7a231bd3f81b81', + 358468, + ), + }, + 'ModernAntiqua': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '089a98f06685302f94c23de4663caf7928f2e6f9752e90741a16eb70f37815e1', + 67772, + ), + }, + 'Moderustic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49d9c05804bc3ed03ed9abc910cf1b8a6222ed61436117ca7bcbd326efe5f866', + 76988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a712a91072071b879de697ec05c62059217e1c7713d74fdad511cc7441f22de6', + 76944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a637c4f4f2a9e1281883266b14d98b8c85eb068b81b20650ee391fc00323e26b', + 76984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dfa424a0485fdc3422745198565dcebcb0f5a5371caf744a9634b5aa08a077a6', + 76888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae71d18a394e430df22c79adf65e49cd711a0528cb6249ccd3fae312688eccb0', + 76744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d061a3096b611c5e0b4dc1d633e413ec6c235a6b8055b99281ce426bc06e060', + 76820, + ), + }, + 'Mogra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2113cc4752218317b62c228be2bc20f4dfbf0edf34e43fa83128a590f23e7003', + 227352, + ), + }, + 'Mohave': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d4450a3a004a52bb26a3008ac475a4234e077a47f376873792dee30ca12283a', + 36972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b71a8b88f96dc407415eca82c0e0b78ef01a7ebf486966ffa524ec430a1211f6', + 36940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9aea1c372023c7f683660619c8d67424ad3653ba3e52d1a119b6b9f94ee22112', + 36956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '369873bbb70ce7890130213f999309e1fe392cc798776d2ecebabdc7c0e4e913', + 36984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93fb63a47fd1a206e53bf977d025d6c5dd94e0e71c522546a54e878db68f8801', + 37100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '181852b281ec45dc9e525893896874d377b105852e84600476f054e3ee09e007', + 38768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '13cf06c5d9f6fa0d6853e2f96e0979cd97387acfaaf8fa108372121bd9ae9851', + 38656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fbbeb623a5daf594ed64003a84f168bce61248f7e925e3772745f7a99cc4d92d', + 38764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '50e023db4928b44c6969d3030ba36fd12ca959880180f98f7d908d2551d02d13', + 38796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '30b40cf3ea8e0794ae034222963338fd27a9e38912bd21f3f87d94a2214d0e05', + 38868, + ), + }, + 'MoiraiOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90f7414971617a32485873ee82a91846c3dfb665d9fbbd86efa20c8a56091add', + 1376360, + ), + }, + 'Molengo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '334caec2f2005876380a3de398b5aaa90d6819865b1770a66899fa9e432cfe0d', + 32240, + ), + }, + 'Molle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '18a53fab2687215001080ee2122268dcdb2e60977bbcc11a720d565b0a81609b', + 33600, + ), + }, + 'MomoSignature': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d48197a74eaf1ea17b55ae73d72f462ee5209d2f1f0c5cb267b7ce964f4f97c', + 319148, + ), + }, + 'MomoTrustDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5513cc233f58462700237b24a6975a4677b32f87ee372b2bcbfa628fb2dc856b', + 70964, + ), + }, + 'MomoTrustSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8486afe0b795b54d0e9bf415054c79f3140369bae4dbe6b290885b86b38c4323', + 68072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2d4cabc780347794319af6b0fc56cb04180b11926a42e10290a7775144f3604', + 68004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70d925651908c8f2c9e8afbf5a66c5c6c6c865ad1e1607e4e2d516bec73ecb49', + 67932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7cafefecb6370d2adfb707c041d5a95406cfacd3987a109d5a6ed19a978cc3b', + 68000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '916a59cd0f012207b33831a589261d6c02feef0fb506f5c4bc856bf31786dafc', + 68064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a612e7f38830813d22497678449a91b88e90d9e1be3ef978d94824248af754fa', + 67952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20183638605df86a71c23f3d2a73a8d46ddbbcb83a8b35dcae92313726b5949d', + 68020, + ), + }, + 'MonaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '275e05ba91c8572153dc207ea7da6cad3104dc02cec3d00f0e1fbedcd24ff877', + 78964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c747aeaddf575e361b8f780768590222b0d5cf509a344bde8b0aab404592dfb6', + 78960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b4acd87606891f3e4c1d033a58340f0dd4e0eef666211df419f568ba8f199b5', + 78908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7515ea1525b6f51ac7a56c18d9aaf21a4bccc3bd4b46a791ab7aac5f3722d581', + 78980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15b6061dc6f9a9ff2aaa8a9d3fce0ee2466b43d7331c298defd9dde8e4088517', + 78968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e421d7930a140ee9b5b8592e285967b87edf2436b16f000907c200618bf24d07', + 78900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77d75e4fa9991b52acd9dddc5482461fa52dfab44c0af9fbc8d6390226b6cfb9', + 78916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcb7e0c8cb5f1f393f9cc7d65d05235ab53d457ca1aa5ffc6d95d32981bb9e33', + 78756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b39695bbf9e272ee2f248f0fd5151d4d1b6516d7dbe1342a947e8f1a4ba1a98', + 79968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c82743fb16954c6cc250421cec334be852dd777ead392685f2baa35c6e798197', + 79916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '617eee4364c6f89af63070bd48d16616e5ae694ef74b152eb0195a80558cbfe5', + 79860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '058fcc1d035b79c2d0690fc633ccb6b5b89548ed321a0bb549f0c4d1d79f2bec', + 79972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2373b38d7fbce3bd2f45abdeef5e0af559745191ccefdf9c85a4374c4ca6fc05', + 79976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8bd5dd290818cbcec13c6b1ffb71447ed291900be914df9a4ec703c53945f0bd', + 79844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f887b375b584d5ada34f22fc1acf1192127b3320932a23bf0e651d85b526a2a', + 79944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b7a6bc73df3b235fc3d244105623df2b47f7bd68fee8e26ec14b74853b6dad55', + 79812, + ), + }, + 'Monda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c9567d0d5f0258199d59666d6b27175b1b23eaa7cbab0b4bd5b32a4c0761c6e', + 84852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ddd5400c894a0a4489aaa4821521dc5f08936442a17cb2340cc5d570562d29d', + 84804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8d9aadf90bccf80385466de7756916877d4e8d478d2c05cabd0803e5a5c10f3', + 85140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e16ebc35d763f9e01097a8f509af98611e0af06958dc29a6f8a9c7e4ac41b2f9', + 84984, + ), + }, + 'Monofett': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48e170f8608fa7c04caea962ea48d9779ee9cd32800b452f229f90d03dd52e2f', + 47652, + ), + }, + 'Monomakh': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a8048c1bc0f9d340d57976568a9cdc5ad6e3c61b25d10ed5464e02ef003a27d', + 146504, + ), + }, + 'MonomaniacOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd92e587ba4213fd8eea4b26493060fb5af37cee384048446b99bb2c926ed46a4', + 89884, + ), + }, + 'Monoton': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0f5db59ecf86dcd9955e90a9b9f81da2365381d9c163f15f3eca10af799784c', + 49744, + ), + }, + 'MonsieurLaDoulaise': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd93913127f449891ea28354153dd4f9822e5eac88838c6efef5cdc98a4352395', + 52308, + ), + }, + 'Montaga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '424305c2cf3f9b8a16df349e6989a5f187adb65bee7d49d55a4ac8c22af530a6', + 31744, + ), + }, + 'MontaguSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07acfc0260822327fea4123ef5dcb7fcd497ab5493d35ad65c1e341d859e077e', + 132416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23f0aeb1ef30ab4cf343e4063d43df795a1ef3da32a3981226de5a29c36c3c9d', + 133144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8e41e695006a1779e80b8507d68d73ac11b1b79bec82095005b2990124a26d1', + 133292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46404a84fd869d0243e3074b8825f0903180b130eb590d0b9fade7319435e7d2', + 133272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbc35a6302959b8475e8c277107c8f4f332ad0e6727bbcf38af35d9b723ded9a', + 133196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '04582c1c693671f34af28d1274b4597230b2659e77e9097f1685ffa7d9161b82', + 133268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef5d4ba20931a2dd7c577ab588875d541366290f1d1fb3e882fd3476e887e873', + 133216, + ), + }, + 'MonteCarlo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2186b0fd4ffff77ae5ec41ffb56234ba3e655b68c2510933e1e9d717c08d73f', + 270604, + ), + }, + 'Montez': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be95682d583207e7889ae9d7b6a684f4eed3c3333dea2522ba7d8cd2570f93bf', + 60868, + ), + }, + 'Montserrat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cc6ce05274dde68e4f2e9792ec78154a73570ad3b8f3c6986aa7615b41471b0', + 174888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3073b0844ecf530de34ec611280669dfb488b4b125be1e90803e7d1f5f6755d', + 175368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cc767728e620eeaf136fcb46352e338f0e6f29af2cbba2d2035c6bdae573157', + 175396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ec20755dbe4985c2505b42bbdfcf2456dd0f2acd8801d9725b2c82c9f9b6433', + 175484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36ad36e0941cc29d47c926ee87d664c5dd20ecebe75410843e05a3bec763fb70', + 175452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff847b201647579bb6cd0f46de344b5731f9e4932308842b7b4dce64fc27c0ef', + 176000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6909027d44d53e9a64ea940b0a7aea9d04187d1bb8ab17a178d99a46bf9ef320', + 176444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de7d9fe72ee9394f205d78d863a5fab4d5d1cb6d71ef101fbdf4012e33c9dccd', + 179020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88a5737a07ce94f1736615e0aa2121fa8df21bc282128974780f958e610e335f', + 178596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '74c2119f00e90fd39db72e7ee2c37e08daecd6a0b10eeda32fd6048f71e82d05', + 176424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '886d0510be55fe84032ff6c97cc75bfcd8997b3cc2b69bc6a09b77a1c905df20', + 176836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1fd2f0ee37f2b95da7d872c102f3682590eb5aeed37883b8dcfba180cbd35b87', + 177016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e258fd64abbd1bf5d6c33fef4d0ffb376b01f587da11792ce4e22267344eeafb', + 176940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e9738557370083ed415dafdfd478b4e2d9cefecbc63e951b58520c8f552ae467', + 177048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a4d435b5aaede1d5433cfbd7ad7f13ae3f90e50e50b6aea05a8ac03b5e481be7', + 177668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e163d6e58097f9495e2090cda82a67c75b176d1d76d32b2557bd8609cc95feb', + 177996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '37b00918a5ac255130e9b46ce2aeb5191d6fe9de7e5620366529e7b43bccaab5', + 179420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a5c6ac647695c1e8123ddba332d2733298dad49b6026c17be935f287777a7037', + 179312, + ), + }, + 'MontserratAlternates': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '254ae3d5a50de82af5b0324d8b1ede3e5857fd85b2552dcd0bc634bb6c2df67b', + 117028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07d3d17269b6cd131dfb8d3d8d298dbebaa9d0bcc03539b9792d39825c32ad7f', + 118816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd51da92902d94521902db9eb1332ee100515434bb92f1993f2aac3204a0b50fe', + 118512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4047fe31a2adaa118ab4cf1ec4def8d701bba85d4bef1880d2bd17dc8fb4a3de', + 120248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f8110156962da6d9f3802039eb05764b5e498487ed4d20a966a0c83677bae9d', + 118396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1e5b61c8cd35a793573016c28041ca1e08b3b6692a0a1b05ca9d27b5028634f', + 120216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fdd5806f6fdf7e26dacd2e2992326db66ce70589744ef0f50b3fc704c0ccdf8', + 118348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '50eb641a4f2f39ef2f1f280aede09b74ba0678cc1c88bb1bf0585089fb5f6720', + 120020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83ba1ca863bfda9a801ff76afb2597606556d1b3abb8896b81889024a303cbaa', + 118096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '56e7a8b6c8c7ea741969071f5ae25e83c1d934ac7a31e6618aaaf40b4f7617f0', + 119832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3dd35596ba91f7e879db763159ea3a7707494b64da8df150c2232b3e5d0d265', + 117668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5ced492efb2e504ef2e4b3a01c99de9fc85bb97846ca7c013ce4ca21762e8dd7', + 119512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45cfe655f713d8f82bd5ffcf6bb2e78d98c0e3c8070bcff9dd0c96f88f0311e5', + 117316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c0203237bd3ab641d5652eae3030c366a1bb471fc29b113e2a6ea0e8984f5203', + 119204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4acb031487154acaad6642c0a1ed9299b436173d143c13ba80fa577c17a89963', + 117000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f034c7056831ba92c73409e1c8541f1728078168d52af0405b6b09f926c3b69f', + 118820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85baf946e2876870e39c970de7d55902e99a4e2f44e95a74a4d259cfc949277b', + 114556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '23a7e4ace159d13c700cc89be2d33396a89bcb324f6996518e03de50a9d7863a', + 116608, + ), + }, + 'MontserratUnderline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca434e8c1f98f350d3897b02275d0a3eda0c0175e3e57bf63d09eeae3ff8bc2a', + 190672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4377d9a11610a134af1cc5ac2a5d72bb198a103fafd0745b7bfcbb9cfc9ff4e0', + 191220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fffc7765979308d0e1da08585f0647bc5601f236df0db7bf188d24c298d66866', + 191344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b28b6d1e247c9bcd132f371efed3cd48aa602889b41cacc8d1bf3cbfef11f861', + 191412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1af0546fe2686164305930518cb0217a8296883337df69727715c7c1de4787d8', + 191420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18c01f4851a6cef09a3320f9e66f0e944d8090a8c484076dc154c064c10a8198', + 192036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24d3320b7f62bc1db56d8a03aa90759c7076d8bce27458ea5a6653cc274e452c', + 193296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92cd49a0d12de912f6e5432f8b2b535aa890408cb9cc04f20b9f3979af8cd095', + 196556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f8a0bafb10a45773e070edde67dbeaf21cba084e934254a4ab6973ccef61695', + 196208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a2b13928d7a81ceb51f5ee9022297cbc196538aeab804cccaa5c3ba42dd746b3', + 187568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75871d272d0714cd5b1cd37b67fbf19f3c3da38c6873239e71edd86455fe83de', + 188092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b60719a6ba34a98fc64bb771294e96f945082e17791b24427074de7eadd397a9', + 188268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ffc7ea2b2d4247b8a0858e352b800cb4b7ce0fad1833ca7e422b859bc2312464', + 188200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '805712a5b097b5ce39917444e052398ced5292cc632d49226d5bad28033a76e3', + 188376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '25d36224dc1d804a77888c7590a8a1bc2258d69d55c89e0cebe6bb7576806f68', + 188984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '02b603669a5cdc160148644e67e690a88d8d4080bdffde83bf826c900ec06dc8', + 189628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '78e290d8bcc156cc4aa4b5608a64abdec763310e9b711330ae665aed4b6b05cb', + 191316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '16d71eb5bf1f648f762bff330edc8ac370a088ecdf05520c24517b7981b5e700', + 191348, + ), + }, + 'MooLahLah': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ffc7f717a45500b91f6f7f0a5bcf6985e65b2d48c5f80b361647e83b2111269', + 178860, + ), + }, + 'Mooli': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd66582c068aa9aab1401520824b4bd4e3d0fc0e9bceffee79c2d9d8988d51df', + 38920, + ), + }, + 'MoonDance': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64ae9d8cb989669bac4a6b3554ef439f11814ebc65484860a38071af5d3076ed', + 128632, + ), + }, + 'Moul': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4986c3663ee887a952d1c8c803346ef872955304ec63dfc4156611c0f9c37f5b', + 84252, + ), + }, + 'Moulpali': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ec0ad574752722e1746a8c7bd1d71bddd0845daba262c1eeb11ddf5b77e60bd', + 66372, + ), + }, + 'MountainsofChristmas': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e02d438d9120d6852ace98f62e701b22b46674672f194c7885e00b517a589a8', + 120264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcd730c29322a1e85ac0a1862ed56030f29821e8cf8a91f6de07a8aa74b8aede', + 121060, + ), + }, + 'MouseMemoirs': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '410c464b22cb468c6dc7dbb09824f4ca74dacf62fbc4e5334278fbe5831c351d', + 53368, + ), + }, + 'MozillaHeadline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '828462a3f6cd76b6d1721fec65288dd944e97f721faa1fb10e1e18c05eadda98', + 53424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f62123f6b2e3a94ce63a8cbfeebcb8663244c55b80f7d1bfdaf9f8ba08d02741', + 53400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06fe0ae65de1dd3af03ca0bc0dc29cf183ce6aea2db47d5f9470d4a9c58b036a', + 53372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3b963dd205f829744fede0f1f43455c4d6580305279548d679f7298d547a67b', + 53344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b488126e43f696b778653fd1303089b11e7a57df9ebfd179213fcac00ead741e', + 53384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9388f494771d84b39d07742794df80094217eda05d92e3caff8b416c6f26e89', + 53292, + ), + }, + 'MozillaText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3641a752019e4c3f6547aac8266031c45166a94a03f47b1b50b66a5b24ed02a', + 62784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2d2e3a3782951526e3266059c29a401653096bd23475a88a3d1ebc8868f495f', + 62752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b3b955f8310ca2d103476155a08b50281f530ba93b4855095f7f241497a386c', + 62752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f53317ce6f2a031a02b092d50bcc58ff982019bf29348461ac11a03131f0d121', + 62764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bb7a8ec64e8dba20491f117f783fda862936bac2f55e30fa9bf1c0b66a8ef26', + 62764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a35d1d810ee2bc3a427215a20c4e41a02f07e32ec965dcc75cecbf74063923c', + 62676, + ), + }, + 'MrBedfort': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '941d5fbc7be444275ec42fd3da1a7d15a3277289126b8c52ec391e25fb7a38e3', + 35540, + ), + }, + 'MrDafoe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ff42784e02d723cd08c9c365159a037b8b26022eb2c9374aeadc7009229d76c', + 46076, + ), + }, + 'MrDeHaviland': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '134ef2ea87cc3a939c3b600c3bf526cce25343877d896e7130f1dd2d329a1d92', + 42704, + ), + }, + 'MrsSaintDelafield': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4adf816176072bd2eb1d9afdacad1d95deccefa1b12c250c1afa50a9cbe5b353', + 47368, + ), + }, + 'MrsSheppards': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d0cf7a213f868f390f7e26e3cf8dfcbe63e502691a239c87f11aa3d57c6ba7c', + 40396, + ), + }, + 'MsMadi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c15d79c8f570fc41ba1007b1976bde2828e53614e3ed642b0af06c4eb070a893', + 95452, + ), + }, + 'Mukta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '689ed83e8b4894f9069d2853baac87ae4735976b5a7e8bd0e78118a906cb3131', + 292048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '79cf11b92bc111c68976e513ae8f1507445985a5376d7f3011b5b941c039b679', + 288812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcbbb86472f2ca059cec1c441ea46fdd4d1e7a8167956cf98f4fe261021fc74a', + 292960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2951d04b7aa5e776f37106d144d5fefb50445776e6ccc7ac624e3452e1ce5c5c', + 286752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25ae58ed46d40da267073512294e4a09d35fb3db0e3697a116f295f0fe4af8aa', + 282580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '981ab5d0ad952878450477b867e2a05823b15725afc6c0558b561b7b579e2243', + 284164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e67c0697120dc90c20c81f0ecb82e09dc9a216fd8a57587aed16571fbc71c8a', + 283888, + ), + }, + 'MuktaMahee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2791187e05e318398af61e232b6df043996565aea0deae5e82aaed81262f60a', + 118688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd10477a2c19fcd65d9a11ec160f99b7d1fa67dded579f1c65a8a6ff135c52bd', + 117752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e582c07788f9c8a965d9633c3af6c44900b76e341f1da0021e729f6fb535a8ad', + 120004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '798b55ab584e2440da5fc3bc0ca5ce95b152383c17bc4de6fc9251d7a56a136e', + 116444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8853dcb5cc9d2a2bfca12c175f6e30f9940d1a7099f43ece5fd7ed5ef320500e', + 116176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38d299d4354f22d6c5b058cc5ebc6b3553501c5062eeb112c7a56200864457bd', + 116516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '455f62dba08ef482189298be69c7f2e4e66fdb6a14dcc4e4f497c69e8a7b716b', + 116288, + ), + }, + 'MuktaMalar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4cead99bab56000dd36a7bc1a0164163260dd24ebfd4b374ddbdd54510e72ee', + 135256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5d41726e666797df2470e8d415cf84a6538eb90623059269e0d990b45e14d8a', + 134292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e977bab688f0491a6725449a793173b5c1686dd540ac11725cd91d4abf958ff', + 136540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6207dcd09ef1362aa2ddb0a1bb980f65ff0ae7acd4d82d57d8f883c0bfbbc3a', + 132828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '349cd8a0d7b1944b9886fa33961a96725c0080b9217f8f4fb5246e64ff956c18', + 132844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0130398b826b11481c1c07fb3733e97b5ca40e0473cfea4abfb35debc4884ba6', + 133168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86ec2eedadb05ccb5cc6529e87115ed52d848d2e20a46c5ffeb00d6ea6d343a3', + 133520, + ), + }, + 'MuktaVaani': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '756f9fe7597dc15f113632569a6c5436b84bbff34fd295d44b43c379eb50d42d', + 319568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd86918db0fcdd4948416663edaea70048de7c52bb4cac6cda82b1ddbc01b6619', + 323308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0459eeaac66b2c99a94ff3f72a243a0a1ab24809baacceff19d344dfbd6a8fb', + 316912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b7098824ae2ac7f7d89243a8e1196f8bb0f1361b9dd6b7d463018b5cdaff0f9', + 322084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '438a66c952c55671431751bea3388b6a3a87eda974f5b6f8da503aaa1f35764e', + 320284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb14a5b82cd9e791794e3f74d8bc6bd81b0408591debc951f84632386b423681', + 320380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6829bc15880a9a66fbc871385759b047839da9d935e7ec5b9e2655841b31d8f4', + 317952, + ), + }, + 'Mulish': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03ce7062e51b8fa76bc87b679e27bf416d0d77e7649179a8024fb4eee1e94386', + 103212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9c21095a5bf04c1341928b4a2c6f0f37f96026a88ec2e71073286d1edbe3000', + 103392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb7c3b6f0c4f2403f4f9084d4486979829b83d9151d6a3958df36a2e24d38e17', + 103340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2327fdf1e1635824a231611be0960fed5b9a9a3b2a6e07ca1955fe12d383eec', + 103392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b86d92d75181f6537c483d55eba899a64b2889aeb8dbdbd0acfb43ad6355245', + 103336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '960a1870273e3b1ef65d5f0ccaadbfb49ed70328e935abad5f6d35273400ad7b', + 103380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3a3cc35ca005e9d5abc221992f1c03d504024055b3fbda3776f6a71d5f86ae0', + 103368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e672cd143bac05ee91b9843d208f65176950b44a37a8524dffb7be87d8c117d0', + 103400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'adb1dddf7843fd3108ce2890a5adbfb5e9eadfead805f8e76ae1a69ba32430e0', + 106456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a5359cf163c80bf359b24a0a34dc055d32b4522d95819a25d4181fac3dfb4749', + 106628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b93c8612e0cd97b9d1e525cb85ff8f062ae0ea2461c0eb1e0a8fe97edee63227', + 106480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '53b1d854555322357d2f5929d94dbefc937231ce31943bdd6cc0feec86249bb9', + 106604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b7edc9540972da8a849d01a793b25a0daca79dd0a2fbfd6f6095871890a75c68', + 106572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '32550813c0703edd005034a1332cb3e4b2136d3097e12a1f957ecfda175e4a32', + 106696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3a9a81a197913f9676f6836f6999e1d0cea5a540ae2d6bccdf0495c715915f1f', + 106716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9649aab565e6ceb833f7a621f14eb970634594d9d61a4538c4138841cf0df20c', + 106644, + ), + }, + 'Murecho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '211c0322e1e4ee4b34f4c08367bc84fb6c744a688394265a10df0d0d1ac002ec', + 884276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87925c409b10149390d6f5e35e1bd4e4c081da3f66532b42a9357ba86c63cf9e', + 885004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0f8e53f8e03c5848af0b82bc9af5cdd5dbfacf9e41db39fa5a2031e053cc2b4', + 884700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93026a670043c89d84b51632d639150f8c9140994f32b9909fbc52eef82f3a96', + 884376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ffae862fd673578f3a05cba4a304f4776cf0a11ef8a78f8b00aae7c4c72db02', + 883636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4402ebc6405b1a82e3a3090a5906f2ea627831453cf97e0f7ba8136f2f84cff', + 883336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da09e26d63dbf02453d06069899d630f58ba30f2f971283dceb6efd6bcd46985', + 882856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5457b321f1b01f662edadc12f9e81902a578708e5f4a3298a2d583650bd0934', + 882560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bba72f1787e43b708206fc7f8de40c1b05983a06a40e86c4d73d118169f95805', + 882128, + ), + }, + 'MuseoModerno': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea6494e7f38a854f05eaf374c54f5eea5d2cbb99c80ea9a0cee4ee42e2e22b36', + 54816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c329c65c190ef2f393b88f7a5907460a8f7a57c2fa713273caa1249d597528a7', + 54820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da4ebf8facbbfb82c3e44786be0644dd5f8ce8be11e22a00400171664e022d4e', + 54776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cabcd9139813b056d40d6bfd8b4761b75b245de67a0197c3e621c5d9d2d1d9f', + 54732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a61ee4b238fe8aad872530df03d70aaf947d915979be02d1082fa0193b4407e1', + 54724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '607abd1cbaf6bba72d9351ac013250500b9f35bf7a2c5f9e26eb33ac07ea8bf3', + 54908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf334b8537a923466c4db2725cdb46a0611174db20ec6813c644dfaef0043bc4', + 54880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6939b4271b7526ca35a5daa38356585b420c12b95167065675418667d8f59b57', + 54620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '13212d76841b0654a3134edaef42427ac298bd917c98522ebcfc22073ee74c07', + 54568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db12e0b9f1c2101d561cc6455648d128bf52f0a858e82e0f70d326be08ad339b', + 64348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '734771bea06bdc6859f620bafb7223070a2e68ac2a85c538c399935909175ba0', + 64560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1b46bd45051a0bd204c0d6bf01339713cf3be9978c7079096654048e0dd003f', + 64572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '14701862fb78316b7fd4588ae1696a5bf435823fc444f3f15bc88e9de9698f43', + 64424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8f069cc52fed6e9be1c2230bb2488fc98ab793309ae30ad5aef349f6ad11319e', + 64576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a3d2f3b99e44647eac7ceee46f94b94d6c607ef999b1224245f96e50c5893d8', + 64732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b254e6790a94a0b6d7d34992db44bc2981856d42327be39e631c42330c3004bd', + 64720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '293dbf1eb6043d8b2575d7b05fe23065b1e18c0d984137c2179f042454d7a0ca', + 64420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1d8ef524f468284d32d61f3dd500409ce47bd5b71ca1bc38a320a9b8a375d903', + 64320, + ), + }, + 'MySoul': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25c71e189f6c862159e9856e08961dabae1d63865ad55ed27e3ddbf87e5cb9b4', + 100732, + ), + }, + 'Mynerve': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d3ffed3e31bde32bc03248e7d9c0b9fa49b7955c17aba2818a7ba253591503e', + 216816, + ), + }, + 'MysteryQuest': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2f86b461cd651b758a4f885e0067be5e6e4f035a2bd39fc9a754eed0cd98861', + 39856, + ), + }, + 'NTR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f752a90d4e653d0afc0c0577f44000436637b8dbd09a149e96291fe342bad8d7', + 195260, + ), + }, + 'Nabla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '753b6658174f4e562f1a4f6d06f560858aced2a6e1a9666f385966abfccefa2d', + 1441836, + ), + }, + 'Namdhinggo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36367efcd43dd7baf4731cf6785ac96264752b03f2f218f599b296216a450387', + 75888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd272a0914487676104b421abc7a8bacb3b9d30f43ae8a1d262201eb5a4674138', + 76204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3a4787b69a989f888141814021349f2ea3be591a4859af3ddb7fa9f16583ec5', + 76240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e02dc8f04a965fe7ab391bdae828fa891593bd98f5eb9e7f28c1b420dea902f', + 77020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ead964cc9a495e6f202f2dde02b5ba0938e417ef610c9a3f06efe64b5a86966', + 77276, + ), + }, + 'NanumBrushScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce58b5c5dd9e887b8d87b74ec135db4f57829cd92d74307905ad221d235c5302', + 2575328, + ), + }, + 'NanumGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e24f581bd178cfce20f48f27892be2c81e2f1ab21b117b596c2ecac85da3be4', + 1359680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '814a6a2ee68f26b6fb99732c8ffdca7a48a0a82b9c10a568e6c5b9f69f8626fc', + 1387540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '297445bf2135f0e7fcabba0bbb9bc9929200cfbc7f7b4d520f2324a69a86c70e', + 1431068, + ), + }, + 'NanumGothicCoding': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64f0cf664abd2cf4793677f1721c1b6e392ba4881dc2bafabcaecad7dcd5a4d9', + 1432696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16674148d9db5dfefada907e624cf4352205fe6441fa25285c291e0b32c50198', + 1458828, + ), + }, + 'NanumMyeongjo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '856982f7b94ac77aaaeac778bcb1cbff89c150947d82faf40b7576da86b8c944', + 1931208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '511242e4f704cbc2f00160f806089906042fe83800f6b40c2097a059e0176a0d', + 1998864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9888d229004e3a328aeae7c228fde9fb0099fb9af1a33b46d52cdcb386b8c4f0', + 2054016, + ), + }, + 'NanumPenScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6f42f80952bb2074a9d34dca3bba53760ade0c8574317954e0bc6240a7df04d', + 2203972, + ), + }, + 'Narnoor': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bac5020fe7d3d4cf78cd5325c6074c31b1ec141b51a4fc199a20d736f9ea4597', + 70400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fa43e9257182e1e330bb2c1fe2d6bc05065bcebec3c2dca457a90b9481daada', + 70192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7da8c21e8179e4940f0e774d4975c66ff5db19d545c83d03e8df656bd4141200', + 70168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f16d31cf1d63874b1a5c87b97dd64b005d2a02512b14ea5683b7bcc66595023', + 70388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be221f3b94da9a957aa9fedacfa7ad5bf4418d4be5300c9610d720253fb23fa3', + 70952, + ), + }, + 'NataSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a5e1d39c8726e9ba570b660584ef2fa3e1a831523a8434adb6723752d881495', + 147920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e01eda43f8ea6d3efb4ccb20e5212508af5aaa7f40235df45e058887114242f5', + 148528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd787ff0b7805c2076cfd31a70f840af2b2fb07b9b384c7e22f095a9c187fc39b', + 148572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd3f6049844a56ee8f0c452df010e1c49db31fb67e72ce3aa7c196867886b64c', + 148488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a3a9bda8ae6a2d1aa52c8d2b5f6a5691fa0bf42f9bec7a7b7bbca78a48b1ce7', + 148524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e26fbe63a09d290448c829a10ccf80a15c8fc3e5a43d3a177ab169891dcc727', + 148312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11e9fc95acd17bf7c9e9726c7f8f1c2e4bb0c57d42ae1490ce72ae0523681a48', + 148652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d43eebaa00d4696de4ff1f4c70d1e25b8184249e1323f8264654e75e7f8874a', + 148720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f378946ec2ba82d4d98c95f3347ae8bf36508d5d86e4856015ddb9c058b4657', + 148212, + ), + }, + 'NationalPark': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '515b187918c6bdb8a9ddaca191335c520bf1285fe542e1fd8c7c67d1fd443b77', + 70704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b773804a1c2da4c0738c50d73dd20f69d341f9c80142efa95e2d03dfaa8354b', + 70820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81553e6b654221b0c085dca18572f80e02a90ddb0ee6c7747c2a867f7423b564', + 70680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '150329cae7e66101e1738cd33337303f47290b64b76e1b9029e7c2d72b527ccc', + 71160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a69d13db3f78b4de8ef03e5fb266040aea3cdac35e292c094c853024d50dd57e', + 71184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '414707e7fa0cac0272142433cd92d6c157742a93bca7eef19514f6a8ba9ffff3', + 73452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33cd4f7f08d400ac1b7991760f9419a95a74d65cef5b7a2f5724b2b894d0f935', + 73212, + ), + }, + 'Neonderthaw': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '666c3e2943236fdb42bff92fb3dcd47be26e88a6452042bc15fd3d86e93b52db', + 168388, + ), + }, + 'NerkoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28124cf49d918ba0b37dba5d27daa95014f3e3a7f4af51a61beeee9b07aa4c4d', + 102004, + ), + }, + 'Neucha': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd0e5b99beffa0f839280f05360122f183b7dc39509b0cd6f996642d641ef594', + 40168, + ), + }, + 'Neuton': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a29d7d27140101e9da3dce70f599abbf872a7678b3e2b8d588e1d3bacd1b8f02', + 22492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5a518fe82107d9e9901c9920122ae9acf8db74e699cdfe1f4d2769753e40261', + 22340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f54b99143cdfd789d9290e7eb62ddf5cd17390d1edc936ae2e1bd7d18053dbbb', + 27636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b3bfeda3ec8df8fef33282d97be8ddd500900b7d258b1a2491d27c7d3e61dce9', + 24156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f54075f41105bd38419f3b80f91deb0a9a7a967b1280ca400b2a6a378fbe9fd3', + 23784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f21682f7a37f097629fcc5ee8d3e6a89a791522b14bb24d8f30a4aae2c156fa', + 23444, + ), + }, + 'NewAmsterdam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4957c2f1a9502b0427afb835730dcc68b50f02c75c7bb90e5eec75ab25472f7', + 44008, + ), + }, + 'NewRocker': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cea218c9ead58002dc141f12fb1190ef17724ea232fd4f563aed4a6e0dafb4aa', + 121920, + ), + }, + 'NewTegomin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f682ece36691587df9848bdb1815c053c9f9bf706d59faca7a60985d5c4c2983', + 7447024, + ), + }, + 'NewsCycle': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0089e0113f688ab959045468593016ffd93e6aef4eef731e0203c3c00087ab11', + 177388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '82fdd1f50941b8a37647ff9c7f26340c46e81869e1e4f2350ca963e99a1973d2', + 59488, + ), + }, + 'Newsreader': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfd1b783cd0f5945c52f142148ef7352efc7cf8e3665f6901727e07d120656ed', + 109128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47bfdd343258e5f85fcf4d828113dee6fb59cdcefcb01fa0f82478854c6889e9', + 109408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f18324622f8dc8a8e9da9c6cd2d756c53faeafde248b569dee56b32c363eec97', + 109448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77b604fe234ce901e49be4ae99b34c3b0bc2e262f3c37a82e867e3cd3daf9a59', + 111564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c228a2e40b98c10bc081f6b67e754fd61f86dbf253c1057bcf4a45d6185099a5', + 111604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3395250c3d55ec610c21aed474009ed7a6d9d24c3c5e5b7aa7f741997416dfe5', + 111496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2202a43e1bac3fb6d4cba40de8b8fba3a6ac5fce749cd7d5f680c36ffd6f3a3', + 111516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '21b3807287078f28b3d0221e4ff79a96ab5884647eace9a5a1854e14b3694270', + 120288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '042c6a5d27eb2d5db701147fb7922bf5c5ff310e9cb9e92f30f19d3bc8651804', + 120416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '19c122c7d35354d83f86760437c4072428c570e3774f2a4cb848b7392c659da2', + 119868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4e8dcc011039be28dc6f7d7279382d43e6761bc7fbc65778a42cf85203ce6708', + 121884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a646d10fa0b8743a07e46fda6c0b9282fca4890003adc769d30626a494228cf', + 122068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6fe82d6a894af1233ff0a19b4eb9c15200d53a7f78d35f3282ad181faba1a5c7', + 122056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c087641821acb77ef89857f89ca233c69dbfc161b7856944bca3a9fba4c3e0c', + 121968, + ), + }, + 'Niconne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4bc4502342857271bfe6583297bd2bd7c5c9ea14d4e799705885cc43b4084a60', + 41480, + ), + }, + 'Niramit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9326a9d85e58a1e1a810f732fbe04a61d8cfc6386f7eb74476c188c98b97e232', + 89644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aa3686d6d55bf014f2ce456c5a12ab034b0ed1bbfd16c2d244ba1c64febf4073', + 92460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a03725081e3beb8a3da68502ab67fcebd0b1693235832946db94f9d5683f731', + 89456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ccdb4b851e595511fadcac7bf4be815463406eb2ae9cd86c8c67226f843e11ae', + 92096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d9e13f6be7ab5a36b3b167b0bd715fe35e641ddecb144172d681e55dc112bc3', + 89336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b62d65467ee397eed7d421564a9ea85db5e3be60cd433292d838dfc271023d5', + 91968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1da6dfc674382aaec6ef12f3d213630748cf9d644129f2665488592c887dd6c4', + 89268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1cc258b45585e81576507380ce045bde8e8b3bcdde7d1b308d08cf676c93c8d', + 91716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7483ea13e95c65b57f385455e462e56d5ae6a8ec86b39c01b32eaabf8d5950fd', + 89208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5ef4be5117ea8ba157887fe3a5b6fe9441daaf56164d58d5fdbdd874a1071e2f', + 91848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f1d765e5cd33ccc9276d1a879956bbafa59b9eda75daa3fddf102e02f419d62', + 89432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2f48515a15cdabab7e4f194455818da6177040de9cec71d99ffa8d76d4cdc918', + 91864, + ), + }, + 'NixieOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c75a2999af6abb8a5a10463395761826fa333587c219c952924e849e4d5e6672', + 50900, + ), + }, + 'Nobile': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1346d8a3e28f22ba4301dbd5b522ea175f066bda6e578bc0477dc4c49eef43ae', + 32420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '81167204edeed4adf19287e0330b0093c1b2020eb7ca535a7930242b5e41c032', + 41368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa9b3c962c792db69379d2e5ddb14d2ccc5a97046c4a6374243bb445f594e6b1', + 36204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96fa9a8444ac4a991ee34256fc78cb8cf1eb38fc0bd9edd353233f92d06be3e6', + 41316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53328374355b0fb03cca5d46dd2f1c23da8fbf09ea633b79078f32f031eeecb6', + 31652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5fd2d77d8011a4308600936091d64aa8b5ef57832b023d9554bc3f91bf0ee412', + 41460, + ), + }, + 'Nokora': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4b3d5f88de8689df10158d2d53b2bfd356648fb6483d7719afeb2b921b2f5fc', + 32268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b78f5e4b44def0ffe95ff10f888dedf9fdbdbefca5fe7f6ff002701cb22773ca', + 32156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72954a4523cfd8ae43eb29ce9ab0d44224fa381dd3f7543561ba38642c4f05b3', + 32100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ddb67c69f7447a5feaa8a8854910a5050a7aafedd7ec31fbbab345d472eb3e0', + 31928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61b71fcd0a3536b83a537d62734260dd88b9857f71c7ab261d6a667e71fc267e', + 31920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30deff824469537fe9175c763271392cafa51f5abd042f5a28eaf45d24f8d64b', + 32036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '677f08a9a122558aae28579a555fa3735e94c5b14ebd900d01ab8d1a2de4da66', + 32024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0d404436e4b06e1bfc94a28a285bd7d73ec543d52b69c572b4569e4738270a65', + 32212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7377b761d3b419a8519ad9bb3106fb867feda0c83905d1cad644420e4326744e', + 32240, + ), + }, + 'Norican': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b87b6afaa0d67b68f786b4546f2e2ae96cc54802f731d2a78c2b084b71909e73', + 52792, + ), + }, + 'Nosifer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcadb43bfc5bd954482998525ddc2df02d2091d50cf0738a5b4bf161036cc8ee', + 41208, + ), + }, + 'Notable': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c596373178a4369da14982762a1d6c36412b593d64631b8a1962ce9979fc42c', + 24620, + ), + }, + 'NothingYouCouldDo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c51730c293b2041740683a5b8fc4fccb6245f5438b8bd10ea5f0c71d5140b075', + 31704, + ), + }, + 'NoticiaText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1035e28d655576ccd4b24abbacfec26a53f2e144fedd9c6d50ef4bc16884bccf', + 61776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d434c50a1dd45b070494ef218e2e4f801716c81f6781a5953fa07614bdc1a85', + 63008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c80c67134d37b155856f191aa27f42d792d9a435b0751fc6b8087b19af1cab81', + 60884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dae9cf922970ed9a98a579a636e3d16a8e1944495a48dc5fbab99e23747bfece', + 61976, + ), + }, + 'NotoColorEmoji': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91e9d923f168f51f1113b6119adb6b2d11014206b8729ee41d96258513cc7d6a', + 25096164, + ), + }, + 'NotoEmoji': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7acb7c8d0d32073c789b0d8f141747a7aabdbf1a2c02befc0484d65c04e35f9', + 879852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c4aea565060fa91575a851e2718a5b14b9fe8856ead696b374c5a7e672179cb', + 879832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14f09d1dc2a9e4797d8f009a40fbbc9694243b1475774efc17ff1bfa7b04649b', + 880072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97d5aa62c51293b238b92c4c2f1a8df58fc72c52cc35839ad4dcf1fc9a3d88f2', + 879932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9667665537b04fbddbc35918f5f2272f79e27f78bf77f39d615c44109d1e9b1a', + 878404, + ), + }, + 'NotoKufiArabic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78432e063d045f42560e71ddc7d745e28802e8156d0990754592348e357c5e6e', + 178640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7d55c48132d1eb6f4182c0593b426fb3ab396327960db128fc68110901e4022', + 178868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0988e8e27e5060a43aca23db99ea70b9a9d1044888f909350e75ed35974e50a', + 178940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cfeab24f463c9d1b2276514e202aec324a097a5ac91a14d654f00cd1a2f4ddc', + 178448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cbc65820fcc1c78e74219c03d95b92b09816bd73e816947492f2564f0376892', + 178728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75c681413ae98e5ba27d406ef16453759b4a8d3544a7de92ced664138e39421d', + 178736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df5f43127f64a8c71aaa2351e2f43be21bb508644336095b6708fbe14b50de4e', + 178572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d9711b13cb3c6a4ab96c42a681bf9d5de41dbda46ff751afd1d79207ceb5515', + 178948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58fbd8151917aea5892c435647d6d6a6f21989daccd5abb567a47de591f7c1df', + 178848, + ), + }, + 'NotoMusic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cfcae2d3520bedb6788dad64fe9c89ae262968bc6f9409b38c28b928343d53f9', + 115340, + ), + }, + 'NotoNaskhArabic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3a088727dade0dd08666b0935f6487d8526d217f01c5b353bc08b4867e4a62f', + 196952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef1fe2f311ce5c88b75948ac6d8de8ea4c1aba9eea3aa1032b5a339ac62a9ec3', + 197356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f41293dd9dd593878fc5312e24ebd72cec8ddd7d83aa94991d7dab84ee6d204b', + 197388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4d782afbdb35bd46c7f3c8e525eb1695f2386a2403daba3e62c4f58d2a94a84', + 197060, + ), + }, + 'NotoNastaliqUrdu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29db0fa287b32962828a6921289c2a03b3afb3653398cb1e9650a8d65a4c68e2', + 527596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb29abb7ecdffbd6d0d1018c1ed5dae35085e6f7927f7a08746254230e19b7a1', + 529524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55d20132263f97fbf6ca2e6080c7ed7e208d8f8cca5ecf25d4e6f75e32a33bc9', + 529436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83adad9fd14d51a4ed9153c039043ca82162990b072dc06b3065270f38f489ae', + 528464, + ), + }, + 'NotoRashiHebrew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7812ee448ffc41a13c683c395aab5057365d31412b114a3c559a876f88e042f1', + 51756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b83fa3df9c1407240de477ff8aff8f0329d50c6a8b6102f8426a97ca1eddebc4', + 51844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b45ac8b54e7c187bfee12e2c1216f779a4e7a98c240d65737e60f7c5db590601', + 51796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b15740e271847741ef6daaa49d82f601b26e99ec81bff1e794e40bf17a86b5c7', + 51728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '122f9fa9f7427df9e3011899a53853b7e28dbd927ecfc58b99bd11694044a281', + 51832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2e6db5db3a59e0dbd09921f85e25860efdb9319d72cd962a0115e343686da32', + 51848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95aa69b661a87a1013f78ccc2f8437ea105e7dc392b890494d49be06dafb28d1', + 51812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a5d8c7f8264114550c919fa8222449282bd6b084385c71ab1415f939d39b949', + 51948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ea03094952f5e57c182669016e2f8c98a284986380aa5e97019837fdc88eff4', + 51832, + ), + }, + 'NotoSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d4604afa5f04060d950a66a87213263b042aae55facf737c91367cddaebe0ce', + 555852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed433ee86e1204a87c81a316e6354d12e6da0366cc5161a5af6cbb1dba42dd2d', + 557112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8510ce55560568b5ef3bcd837ad99fc5dff9183339a20d9e9128ae23ae945e24', + 556896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61ea1e781b9d7b10db9b4a6aa2d855cf2215c316c7cb700aeb067a0440d031e0', + 556300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86553647e178b7a8f5f613ef27d057b69168db555caa4235d1bfee92d01d0273', + 558152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c302f0c3ac2c7afcfde0f124337360cdceda4f28564fab69d39460e5ecb4392', + 558384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c657f0687537f6987bb0db652a59dbf90843778c641a0a53ac020372cac10d1', + 557984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '942cf876c28c70221162855a2526ead64a9549179ba686215318a5b5216d40a8', + 558296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88894fb78c78bacbfcd1cc7c042abdeb3a9b8039b0cfdef3e745dd4c6b560002', + 557188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad2425f33f14dd5f7830c02c40ade2d521ea8df3466655fbe55e18ad92e76bb9', + 571668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a30d921dd9f291bbf8a782833570fee090922303f0f730dbe6ca79d0e39da4cf', + 572400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b6b6e33dc999dff2af1ca927ae7ae9a77ddbac8c518a5c9d0b28921debe0533a', + 572404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9f15655bceebde7d143c5985eb8b26d73df858dd35578a65c332fd1a8bd7ebc0', + 570360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '23fbd5464cde824423f0661dea66de6ebd5e97d5056ccfb11852761dae75e714', + 575076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4adf048b950f3de6fa34525b5758442b3225169672c0c5642f8510a5a9e280f5', + 572368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ffff9b7a49b243730ebe3341b16d008a72dc3af1c5a761fc9b77a272f229ee5a', + 572228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c937ff3fbf103d2abd2a1180cd8cd77ca8599c6684a57e30149bee8582343558', + 572316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2aa705c8678c53e12eab4b6b1e0aba10b6586b272b55e117f69183aad168b567', + 571024, + ), + }, + 'NotoSansAdlam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c8dedb511ad901f614cf568a8b0ca22bda81831c2beeceae9d82f71433b0a04', + 85004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '032415b7b474ffed810ae02ad85b1987bf26a8ca474767f40ff91c3721429bbc', + 85056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2a427b7242fb8d298f957800065e28777e3d5c7541700940bf440b43e50f308', + 85068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c04ddddb9c6ecd3b903085d2435ab13cc20859aca01c8eba3a19f9d93eb96c4', + 84956, + ), + }, + 'NotoSansAdlamUnjoined': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50d823768b61bf2f4a7272682d70db343ef055659b22698d9d07d96ff3cbd352', + 48400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e078b5ac045761e26137a3144443030240f2594f45736d8b30ccd1c31f96f50', + 48448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f08403c7da4360a0c1b5f2b350a5343c706546183129aa50a828a755c9d6d5d8', + 48468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ad50dc660e0b19040c5bfa22acd022867a24949521479e1c43d6b569f23cc62', + 48360, + ), + }, + 'NotoSansAnatolianHieroglyphs': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b6c1cdd6f85aa5877820d5d1d27a6fae8b285807a71e11679fca36a4ca9d33c', + 258700, + ), + }, + 'NotoSansArabic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01553004de4fcffadeabce474d5a1e2f8ae5086ee222160b0e9bfd3f959a63dd', + 192388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e056aa04c05b6af8c632d08ec519361a3735f3ecd161f3cf0720c719870b7274', + 192572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd20bac18ff3d57b1cb90e50a8a9ba0370d6ac13fe740869dd6b72f688ddb43d7', + 192540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d0a42565e116e088231be26dee07e2383e9c0744ac99be79cb2d871fba18161', + 192120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36030354ae3c00d2f42ad60e57c920174c43b19431799f63988fc43d92f67358', + 192380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2123212a105dac61a7da60e69f11ab9c361fe1b9cb5274fdf2ff200ef4498671', + 192428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '31b443fb84f3dc89790be31837ef205e71f702b0081f8aba37548edeb3e8d64d', + 192324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd417248798e6986a005e47f1095b076a328fa90cdae4e11a5c2ff585a3135254', + 192484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8acb8cbca090ef664f795990e107f3a7e9cc8b1522d695d3885aff5b22ba704', + 192368, + ), + }, + 'NotoSansArmenian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'acb5d847bd88d7f9a342ce6b17533607878452fa7ac820a0da52a56ba3462cfa', + 48468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da139bf45a52d3231232c5e100541518e3f9c53e1649b5ed63f9e60dfd378bce', + 48580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78e2def5aed059ff6c72fc5b4b15e722e0aaa20630161bf33d33ecc0b8ac71f7', + 48512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47d8a144d59fe73265a9a17041fdd783a7efec8da47ee534f8c9d3c16f3b3964', + 48364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97814b6a949906a4144f66b6237bc4890a75f8779bb480192c1fe5eeb3df84f7', + 48424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a95c8e40da594422e52e271bd688f4b905463a59712fba97661930924fcbf1c0', + 48428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8af937a1ba205d208674996fdc50fa2101d6626bf89cf536673832e5b880798', + 48388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5420d5a1cf0988903027fd37a00434f274cda62c7ecd108100231aecead9ba6e', + 48464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd57f9ae75f66f30ab487f7b9c27f5f13d496da4e609f77e60d3c17567a77bad', + 48364, + ), + }, + 'NotoSansAvestan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc51706add61fda7aaa2bf0947f49eb7295ec5f8c0aa6f5c583df0f2ec3fc157', + 39400, + ), + }, + 'NotoSansBalinese': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ceb9416a565007c01fe225b2c7d730a49c62daf86bcc5f0ce5a7e2c3a3440ec', + 121876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '366024452bdcd9eedbac7259b7319327ea7656d542676b442c3efd1867dd8d0a', + 122024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cac749432d5837910e8ce5d9bd0035f000e47af3a97aa64ebf1fa4668bb3aa4', + 122056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '558f33450052f6a722b8ad301b242fa9b4f1d6bb4c869a7f247e11602821cc68', + 121868, + ), + }, + 'NotoSansBamum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29ff246c81f52079a0396c3bd8905b1e5b6047a481491e15146d3eeb88f7e9b7', + 179836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd9395e9dfa428185469bbc11b9ccd1aaabfb46f8be68224c044008333429d2f', + 179840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53018f8b8a24b028fbd41aa85b03f0425c7652fcc5f497b2a3985c5a0786f0e4', + 179884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7327f808707f3ce9685836a548c8471ae1e615508195b1edcef3b6ed171f193', + 179848, + ), + }, + 'NotoSansBassaVah': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c9cee0fff7e14955f91e9e021c824304fb1cb788726b1fa8b2e392ed2381ed6', + 39520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7a5cffed732e507d0b4aa4e41f9d93829803a61ac1f8d7b3d4b2220ce50c03d', + 39568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51a929906f9980f56f1e5939123b107ff5a59fa1b1ed5c598939f14c92654a93', + 39572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29cf3a10c89ba304281d16baa0853bca85fa00b629ee1f7a7f27a0d9aee28cd8', + 39480, + ), + }, + 'NotoSansBatak': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afd78f1bcc89b11ca3460e475c401a8d9cbddcdf3a7b6cdea48185bf52b87786', + 48736, + ), + }, + 'NotoSansBengali': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ba134c67d1983b176bcf06e4ad2702e7d13ad0c2cb08e8ff3a830b7da4b357f', + 135516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eeef9d73d6a2d6b8369f7d63c246c52fc9d9103acf064cfff5e8fea9294620e9', + 135836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78cb0f50f0f4643e21641f968c902175b0e1cbbb5c4b7b78b87199326b1deccb', + 135924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b295e27657dd01f7492049dd7781a20d34d47d01ed5340ba324f0ffc02c46a17', + 135448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbe7db5a96c29012228859422e07db790645155fd916ee71dfb39efecfebbd28', + 135908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b649c53c17e80135d668d9fee98f66d7d6c533553a21e49b821a4e7d57d51d43', + 136040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f28ca3f66eca31f0b2b95df14395dc37afb1b3ede66e8f8e965390c149e90a9a', + 135896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '04ba4d9a54ad6fc7e7d8a1e8397a0e16a2b3b70fb026499220365b1911ece0bc', + 135940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23cd8975e9205d3452bf02394af92f7ddd98d66ce6cb7dd997ef5f3ad21cd05c', + 135668, + ), + }, + 'NotoSansBhaiksuki': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a4c9ae5a4428b8455ddb2b92705416bf39c3496b1ec0b35c2f5a63682f08e76', + 270088, + ), + }, + 'NotoSansBrahmi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6acd23e0f3e9faaa73a9bb63a9610ca44bdb20c8581c91094fbba06f3ee6f6c8', + 81356, + ), + }, + 'NotoSansBuginese': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91ddc4174eecef95580ce19cc811959f4519a3b61027bc6997f3a98da4683b31', + 35424, + ), + }, + 'NotoSansBuhid': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9982dcdb6a665b970ec917ea155248fc6b000c239e6a16f4213bda014de61454', + 29928, + ), + }, + 'NotoSansCanadianAboriginal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fddb53ea83cecfdea3f82255ebae22ca52f12ddcd89c9145b156ce85b3899a64', + 130084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92f8c37bb4075802a9d924510f4963da7116ce6247dcf6e4929a3c8483c03d36', + 130180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8f5786b2ba2546d87c78e91eae376b3d5241b8c9c8ff88ce149d2f8cc0160bb', + 130144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42f90ec97934919bcba82ebaddbc7eaa47d13118d7d44bb29e5b40f6c1a340e0', + 129960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5efde8603dbfceea4646b1c9d98462547b7d7928536091958423dece4827bec3', + 129968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7afdc748bf68c262e11f6e9b7ca348de50ff1e3aa9141d94d2041c3599798d45', + 129804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e73ae6f3113c6d8048bf83cd1e168ee4867ffb95cb793da0705b49df4f62011e', + 129620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afa312fdfb84f768cb45b8a0463b474ee8d3fa020bbb2e3f7b4137ac26c7e0cd', + 129740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27b78f0555b2746aa945738c7d9708e381f31924a63a64ca3138416588fe9ad9', + 129552, + ), + }, + 'NotoSansCarian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5a4c9aca88b2403a15d4f42b016f793e9139651fd59a631ed1a05fc6d0e2010', + 36156, + ), + }, + 'NotoSansCaucasianAlbanian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9bdabfdb9266487fef7646b5ef01b9dcb32bf8eed520d3a4108de79b482312c0', + 57932, + ), + }, + 'NotoSansChakma': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6807326c6e242352d4e834ae550a912f58fd24e116ae89077fc5f054cb972c58', + 84900, + ), + }, + 'NotoSansCham': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c348d6b28dfaf3310133abca39d13eab2beec7562441c3227b45e0d6e1e2fa7f', + 59116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62d30a77f10db54a65bafc2db8e2fb6ce51d27ebf70010e4539ddf6d3a8edb7b', + 59472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39dd9641a590fbac04cd9e5d468cf29282e278ac9aa65cd3d16ac9313fb4aa58', + 59392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbc6f09c1228990db0ffa0d585b50006600496488340528d2612e9267350113f', + 59216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55c82deb14699bccc4f498e5e10c58ee7712563d41f4f54ea7b647e2490b9182', + 59580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f04b8aa2308c42eba7b4e5964a7681f7cf13d02eaf4b20c33a8009df3c5808e', + 59604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61eaab69c6dd75271287c66bb63560b85307bc0e90df9080e830056c61eb9776', + 59524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87647bf3d84d660103317b4cce303ccfbe6e45ddcd2a2ebb715353877f4bf4be', + 59544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50ade0bcb87ea45a71b67cb3ed697c6e77d43821be2c01156446f255df301ac6', + 59488, + ), + }, + 'NotoSansCherokee': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67a3b3c725909fb26914e53909fcd243f782edce4b9f9584714af2479d8e3f78', + 85408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46e8aa3c343eb414f9ee6e4dd36c117c21a9c79d290d84223a639e2482e8bd80', + 85680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7336e27022a2babe93cf47aae8a0bfead3cd8a93c0ac5ff38fb92635af1c1d88', + 85660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bad4e28c19c251a8b0d2bc77d120c4fdd72f6abb8b6525353cb588737179f836', + 85028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c33a095ae09471cda3c69dd94c8ed501bd33cc7d5c8d6fa8856c4d7fffdd450', + 85184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '754fdd602c35f9436a2b288fca60dc759e1f421fcd03842dea8579cdbbab48ed', + 85312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3ecdc8bcd8c08993e49e2794293da2b14d41a5eec90362bc98b71032611eb9f', + 85168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c48e788bd711621025bbff6901cbdaa2af13f939587ecad56c99077e567229e', + 85252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f36d0ba106d0655f4e55079380745d1071da55b8e490397c3ca52ff256d6da3f', + 84944, + ), + }, + 'NotoSansChorasmian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee60cbe6bd2672c07b2594bb0decc91349fcea8b59ef64f16f79496ed8523638', + 46864, + ), + }, + 'NotoSansCoptic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '866deddb16fff50e1b547811bd14e060231979c2615020ac8d8adda51d66ccc7', + 63668, + ), + }, + 'NotoSansCuneiform': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7746d4396b12c828c734583d6b44e29407f1d15fbc8142727039886d541f01c2', + 850560, + ), + }, + 'NotoSansCypriot': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '416e96c6453833cc17375a30f04f9f286de570acb904c4ed4251c389945fa8f8', + 54132, + ), + }, + 'NotoSansCyproMinoan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a5edc39daa006a12aeda9a5d6fc39a2d00f899d9f83f66f30f2b30a8de9b32e', + 42644, + ), + }, + 'NotoSansDeseret': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '581c86dc1a00ca1f6c55965ca29c5059c7471ea3d9c00292602dd7ea190c7701', + 40740, + ), + }, + 'NotoSansDevanagari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5f9630081b3b3a1356e4fc91b274edc0644e00bd87dc4aed28a4573879a0f87', + 219140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd404f933b73d7058d777d2a22124d9efdcfbc6586c9f46fbeef1b6f7db8a6fea', + 219720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fa63a8a53d6bd6e6d956da4f22dc1b1cde28e53ede952c5247b6384d1546579', + 219756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c5502855cb4f5aea1c0a0e724d678372c4c54ee62ca9bc35dc417a04d59777b', + 219436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7aa83f81150ea170172d56caa44fb3f466969c423313acc9ad20bcf6cdac9d89', + 220024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99b84a1d75cafde6428cfa64e43e5aad29825b7c358b4cf19df9427e92b8013d', + 220128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'addd6707b4f2767fc6d55b85cf67965038e9338fe02ba4c50d2701d289f35972', + 220008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd19e95d90e9306c2b34dcc47f88c8a2e52a59c03fc002192cfde30dc17801bba', + 220088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b97e993805373744d3139eb79bb7d0bb9a098dc27f4b68f267178077bc4d8a4c', + 219844, + ), + }, + 'NotoSansDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccb6fbf0e5d3db5e2caabd90577d5fbf103befd1cc054004bc8ad80066811774', + 326032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3fa5b947266d2ea0661775660017b95b87671ff1e99ab063081b6524a8e068b', + 326356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fedb0f1ddde967b8a2340cca57ab089552d3f4c7386a54c02e9d34b28b7ba53f', + 326276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9827681458a763e8b56602b041ab26c3b5b86232c24b13419a7d129949e23296', + 325636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '285a39ac8ed20987f6cbafd8ec1014af99a4897a258bb62e995b58746ffed46c', + 326112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c5bb6a9787581c98d59c99de0c1091c7a7f33efce6ca58af603858826ba56b5', + 326224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5343283b61f5f0562beea111131d1157959256fb71201dedd4c17464cedf28ee', + 325936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4819663bbcb9480e115a37a342ac9b9d4dc0eda7f0903d618130a23e2a9009f8', + 326452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84602d51484600f70d31c4ed03e44533b242d05b48513833eea6992a9cb280fd', + 326544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dcef197ff63b4d152ff000978c021357c29ea8998d653fdc57219644a04a0dc7', + 351656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '065ea256ee13972d10491a05a0b0ae9e37a8909af510c916a4cfabe69f11d022', + 352116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e65f342ef33dee3cb0b620b62bb832cfcc6b208adc85c6f8f0204c60aa533ee3', + 351704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4090190f86e36a304ea775f036d117cfc20328eba4b48a60699199760dcb99a5', + 350264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '750035a404ff31b47158fffe0f7ef1f15168bf40f8ecdb7b2d0a040b14688ec6', + 350732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e439283971158b8e2dc6dfdfbd680de482e34847d452904813b51c644fc0a31a', + 350840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'af339997622d79e1ae51f6bd84d11b369d8bfbb470c9d0dfa3f276e0bf5fac80', + 350416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '759bcd5c9bd314eaf1b25fac7fa6a45b54978a019fa1a0d1d49e6e9c6d8b6f7f', + 351076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '095c006f453ad5af51abdf0e3e7ef9c1a3178b7de556e00e9fdc7cb0f95a5d22', + 350972, + ), + }, + 'NotoSansDuployan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e14b9326830994b482bace45d4ca37e572afe0f61ba94872945a9448197d0ab2', + 1770904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42e602c9e4510085398e79d606b78a0dacdf601cf285eb76472db27051828419', + 1761180, + ), + }, + 'NotoSansEgyptianHieroglyphs': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f39de68e8fb6ddbe515eb49ee8b57d1e090e0a15ecce582f55d1baad366d4db', + 613292, + ), + }, + 'NotoSansElbasan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '300d5b61e5f811a3925e022c07c9d03a0ca0fcb92c086432a5fd309f7597bea2', + 41208, + ), + }, + 'NotoSansElymaic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e6a75ec0014b458d4ff69e4152dc592e185863731a1c84c3574fb07cfe506a3', + 36248, + ), + }, + 'NotoSansEthiopic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5692e470c19cb6e9624d6a311918ab0b22f1a597ca5cc59e3618771f5d927ff7', + 365276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b94555d5c00415d6f0265c8a9628a86d9631c42f11a6d53ce1177d89abdd839', + 365424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f79bbbf5e4325b0222651f14ecd91726d1d5478644610609fbb25389d796fc54', + 365456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c666a1a78cabd71d27585e6f92b4cbd618499a6c83b026559f359a27aa3b4b6d', + 365340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e093d97e824ef9917741889833ffe2cb05e354066f1a62c2047689633865ad9a', + 365500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd37bcea2525274666b1d875a051662da3a92e095c011b025f982f17a8cb19bfc', + 365344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf02709573f26204db769bb517415296d8f1d4562a12405974a979b8f9de47bf', + 365292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23409608e6bc5a24f390efd10a41310597edb8744c2b2c30009e56e434ba90cd', + 365276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ef7e599a0a6aec8010bb835547904f0a4326308582fe68bc0eb0674adb3610d', + 365280, + ), + }, + 'NotoSansGeorgian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f6fcadbd5c13ceb2f6cef925d8a8dc95312b41030fe6a64b44a68a7cd9fbf56', + 60896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0eea3aba3f49e1930c0212fad38efe5ebe7e38e7ba384e86f324f9c19f6910f6', + 60972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33f4cedb38b0d28297e08065171056e59eb90cb52a580305183fb0ba78efafca', + 60928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '535c365b59749a83e29082ae891342e5cd48016e7e0b1db435f2f8de55be26c0', + 60864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b65ea52a5a8533869451389c765267cd64ffafb3767cf66ea86a390a67fbf55', + 60908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '940829cd8cb4d988cc7c586fb93e2c918366a29080460cb0652764fe2faaf152', + 60920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6955b2b86404d82cb87a5f5df996529b37a6d1c0fcc59d340577a9d2f605e320', + 60816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b15c62b0e03a227d4f304913e3710d883a15bde1e8bc99049ec679b49373e9f', + 60852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f67a808a533bd9c8c2ba6f1b3702504128eb0d49b50281404f02ce664207953', + 60816, + ), + }, + 'NotoSansGlagolitic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f64fe2d7a4f8b72253995b713c63dea0c96ca1a8d01b6d4e7b10a3cb346d4375', + 55072, + ), + }, + 'NotoSansGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f082f3e2953db35b863943d051a3bdc758d14244e593b585781c622a5e98aa3', + 33264, + ), + }, + 'NotoSansGrantha': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9fbcd0a6850d001e3fb84f5cd25f024aa27957629ffb12270594be6035e7aac', + 289280, + ), + }, + 'NotoSansGujarati': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d97b9f4c374b65b8025c7c7640e592ce1576c509398775dd51e42b23acfc547', + 173516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65f3ab1e3e8688e99d19536a6dad4110206a08604bddb8644c8b7a962164ee3f', + 173744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b7e209fe4b7e37486fa2f7aa4fd1c246e73cad8aea8e3922930d7cf7f172d5c', + 173804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cfba7627843df89fb38beae9cf23f8eeff285c290fc3b82f8ab5a9a4d2da9161', + 173520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89523bf81e7b5dcf09e868a83224064873ba90703d2e485d90facbdc30e9ac28', + 173768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '647d4f82d0861ea7f59907e438fa195c6575250f444410479d81522be5e6e5f2', + 173800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ea056cb972afc85eb8f124a1832aaa4fe5b18f8197f69c57497a0adcde5ae91', + 173700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aac5a2374644a0d16db6a3c09e2be11881e81a94ebcb61415c462f66c433cbad', + 173996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68ad3fe4d0efc967e6efc0892f5ab67ce366a3eaaae1cff530d4ab2821a6ce5f', + 173808, + ), + }, + 'NotoSansGunjalaGondi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d1f00581f054a62be20dc296ff6d61c0d54d1a6b22c7ca45b04aa48b160819f', + 101436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6e775350985e2bce4eb0d3684b0e1bdbd11a4f493ce17da4748cf2dbc96a759', + 101684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd91e8701664e6b693409c75b11369f5d630ab00e9c4f946552c49a1ab73f51bb', + 101544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5624b6a163ef440cd5b9a2afe49406ee6d2450c36ed5e043169d7940cd86bc69', + 101112, + ), + }, + 'NotoSansGurmukhi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdb32450be1ddaf4c877a625517d2d8e8c0c46ee6b3d646ebd900e578f90c6db', + 57616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc6f44e838625114966ce20716712dd76de4d36ddabfc1e6bcfdebd628c447f3', + 57772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '509f0ba4978fb1edf2752fb49c7ad5da3337efdfd230d397c0ca42554cec92de', + 57692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac614bdef2e78bdfde6925191dcdb9a371031f81a40da7ea4f1d4f801f7f1ff5', + 57504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08b8941c9478ff57b51fde994551866609e9f066ad2ed216b64ae36abb2c12f5', + 57596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e94bac59a9ecb7e14c2951359a6960d93e2caa832a535f8c1317f78586c2323c', + 57668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e637ce77bca94a375710b7248fa160cfafdc5382945a0190b9f95766dad39b6', + 57568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '182d0b0d1dc49edd132ea2e2410d6f7bcb14f0980853c435775fe192069f61fd', + 57688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1431410504da3eadd109a100b7bbbddcea56b710fac0b31c6a08744885c41260', + 57536, + ), + }, + 'NotoSansHK': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1add5ecd54327e4f2179180eb9788ea21bff6796d58367e9a36931fe58360ee8', + 7069760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a994f0bcbff1657c750316eff32e3216c7e7d0ac925fbe4f298f9acfe7fe52de', + 7072940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5ef46324473bee092760129c35672376d064ffc2dd7532cb98d134b121b4d02', + 7073332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86addaab33d64821a05f256a8a5b5ae7fef93631bc7faccf1a27d102ae6cd6d4', + 7071168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd51c4e8bc8f3a7db23b1994cc5b5957dbb685fc30577719445806a103a875d58', + 7067216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd8d9601d96f8e8f34ae2af6aec48c113d16ab24f88d11c6cfbfa4ec5ed5ee85', + 7064568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfdfc0d844639b1ba2b9b5f72c237aaabef0904845dfd8ff622be969dbe75006', + 7063820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '304c1217057f14df12bff94a6cdf8d92e65ffee8d4e797682d85614b0e73f1fa', + 7060220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c79171710cc5e685ae686598165dbf28b8edcf4a2a62419e95fec566de660d8', + 7057764, + ), + }, + 'NotoSansHanifiRohingya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd63d558ef45b51d1479be7b1fbecc9f8ef314be9f6b60fdc3416af665827da55', + 46908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b14df338c2b48c076cc4ba496f3dd7cd388f5744bd5a497cf5c1aee6ab7bff3', + 46992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '504523c5ff441a7cdfce04f224575a904fa0d33570567e49a122a7cc304cb2e0', + 47024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '650593d853aa0fe29a613bdccfc49ee3c947dd836d6595219241b27b0a4ec9c2', + 46948, + ), + }, + 'NotoSansHanunoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81b3f3dc6f1d83b0cd3d4c0e5fa93cf5719268c04b5c83ded376b9ab8e3faf1b', + 35644, + ), + }, + 'NotoSansHatran': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff1f2dce903964bc9166cdf7eb5ba33a6f5e3481dd1facbe90e1df93f9f8b5fa', + 34760, + ), + }, + 'NotoSansHebrew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '724a57dd8003a31bad4428c37d10b2777cec5b5bfd20c6ed1be44d265989b599', + 46472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee40f0088e4408bd36620fd1fa7290fa145bf8964d2368aa181794e5b17ad819', + 46532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5686c511d470cd4e52afd09f7e1f004efe33549ff0d38cb23fe3621de1969cc9', + 46488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95e23e29b8422a9a461300a8b8e97630d8a2b8de319a9decbf53dc51e880ac41', + 46476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fa6696c1d7d0d7f4ac63f1c5dafdc52bf0035a3d5b63a181b58e5515af338f6', + 46652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc6deb0701c8034e8ca4eb52ad13770cbe6e494a2bedb91238ad5cb7c591f0ae', + 46648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbb2c56fd00f54b81ecb4da7033e1729f1c3fd2b14f19a15db35d3f3dd5aadf9', + 46440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0fb06ecce97f71320c91adf9be6369c8c12979ac65d229fa7fb123f2476726a1', + 46472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8638b2f26a6e16bacf0b34c34d5b8a62efa912a3a90bfb93f0eb25a7b3f8705e', + 46372, + ), + }, + 'NotoSansImperialAramaic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ae5d0ac4e5736cfaa525bcb8c16aacc63a5f06c2990bdaf27eaf9b6126ef643', + 36112, + ), + }, + 'NotoSansIndicSiyaqNumbers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2feced21b4ccc2ad6e80edd4674658d2c5b1e8658d09446c2001a0d60a050c3c', + 52176, + ), + }, + 'NotoSansInscriptionalPahlavi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15eecb543cc20c8cca847d70b61325bc5917019925499db5b3e40865d25b48db', + 35452, + ), + }, + 'NotoSansInscriptionalParthian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f4d3e0e5c0a6801a0737239cba71e55b6a96e8417cb00da21d191d5ab2a4beca', + 37392, + ), + }, + 'NotoSansJP': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd5fd3ae1b693f218a0a0e55a6c5eb1cfdd59a8c4841a7281cb634d974de0ae5', + 5326580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fd473fd4ba4f658747ef3e2424317b19fad9210c52b82100173a9c5c9a205c3', + 5327856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27dd6dc6b2af43cad6db504f85cde5ecb457931541de48ce63aa5d7b1f7f61d1', + 5327420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0eba77a9f62df60eda7b56719cf57bbfbd8434583f2a137a9b91d4d67cf420c0', + 5323876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c4b8fd576578c2b1f556002f9cbb7ffe2438f764d680d47991d9a6c1458b239', + 5320560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e99a54bd88d39b36375fe79deb54257c8dcad374a86bbc6e2b6aab0797faae99', + 5318076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74823fedeaaa812df51a6a1ab156cdde3183f65dc924d02934238d8e553f28bc', + 5319412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8900f1bbf86e9af7c4af59c2f46c862b595069cd7b462ec7b0503b88f3c23f1a', + 5317008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b8ae91ae95c6f4e25f46769d9fe460ff484c4f17f27da4af3eb94352c6b760a', + 5314784, + ), + }, + 'NotoSansJavanese': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ece925b755f36c196af84fa18dab81f15c6e05e99b4da91aa35f9ede52f67b8b', + 153072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e69148b96fac9919d63b62ceed20687a6d99a76b3e2c8e0f7339ccb29abf039', + 153428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfd6b936f2a2f69492ac9b4a197165ff27a3d8a8b2a4229fd389bf2c945f2221', + 153340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'daa5c6c4df10f1cc3afb1686274e0a4ed22062fedcee4833ac31531d25503a1c', + 152636, + ), + }, + 'NotoSansKR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3237bc0bc2e641a81e13f46a5e98d240b7a34a78a8663c48675637de4f129e83', + 6171492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a52cca0a9cd218fc96a10b1465602bd0cadb784fdfbe1e6314e0cbb6e943993b', + 6171300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aae67a2cb87aa6cfaf5f6919fb9cf3731ff444a1e46b39c8354e0b58fafd8979', + 6169196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65f278fc677a3a0128c733af662c3eb31b910c9bce81e046ccc3c6d3ede879e2', + 6162976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edcac553518d3030cbdc6ad00261bef84f988cf099dce567523c719c2082c743', + 6160528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21ec9ca6ade00303740d965d4953af2af81a7ae1316d61de16ceded863394d7c', + 6159180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45f69f3abd7e355bcd9f754261c5090ab3b7e1b526c6af60a71fe7d999b35073', + 6158968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0451d4dc39f2e1ca0af978425c4639d245ca0c49425165d18c0ff5b31120d490', + 6158032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd02b6beb93927ff6501698fa8c24a5f03ddf5f2fd796a0bfaa2426001acdbc2f', + 6156980, + ), + }, + 'NotoSansKaithi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17991084f858025ee0bb0c9988ef73a32dcd7fff4721f8b86c9954170e49595d', + 77028, + ), + }, + 'NotoSansKannada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed8821155768145b0c7a1ec6ba785fe81b52e9d212811138e4131e89b7944f1a', + 145648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45a0d01e3a4553d9023b1286e8ba2d2c35f2434e3c96ebbc8137210a70635308', + 145876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8df8f15db7c4e1b8f4dd2a4e1c18cd63878b86f731f6eb192ce7ea84e6492bb4', + 145764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d0a81a179eaa1179859649525108e387b9278cfd6c233e6d21edf179368ed7a', + 145460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '463fab5a7d5ef57e4f6382f15047fbe0a611b05755638b0c5910fab0bc835509', + 145604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '727aa9932bf5a5930f5fc84500f2c457b8ef57c28a22da28bbc7767d6586a46c', + 145692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72b3022021f48ec52102ca4555b5ff3ea21f54956166222523be36f806e5e0bb', + 145628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '088ecad2a36a30548e69eeaf1a94b8f10d0ca31db1f451bc98ce5c90238aa673', + 145780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '188e5811b3721e27d85dd197cd4309f29c5928a2fe6294e9cc9c42894f5355f5', + 145776, + ), + }, + 'NotoSansKawi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34d097d0e74606713ab2e3b95964a60c379457a757d6e49cbdea82e95602cebb', + 71128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '263920f0b3b6d4b0617e602bd2ce360b61769eb0924d2eb32ad63d4e68c8329d', + 71260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f365d6552ccdfedb5545d16f6035f78adfd9ef2647439c98b27abbcb41b26d11', + 71148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3eda735f10de78523de0896263c7b5d0f038ccb1aa1b1531e752ddcf01edae3', + 71108, + ), + }, + 'NotoSansKayahLi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '166ab399b84c673a7b01528ae23f7cafd865ee5c4ba085335b3847aac4594bb5', + 33128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3b09de006744cb4d595c6e4e4efd9965c5b68f2d81c4666ddbc6cc7688476c3', + 33212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cdd0368b7495828bdd5dffc2e5ef58de51d73674f28015941df426dc7982933b', + 33252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aaaf1e025a6479d7c33c0bf6ebb4a0b6afc2f23b07828c9c4750223c74d7f0b2', + 33160, + ), + }, + 'NotoSansKharoshthi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8557f694b3416ad105a8a02af15e43c6df529ac82e93e1730241bdc28efddfab', + 68856, + ), + }, + 'NotoSansKhmer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b1d388ac4c1652723890022f49aaf1cabb06b17dbaa0a4708ab0685234bb1d0', + 104852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cdb767c083fff390d63f606abca0d824583931c6963e6bec4b5cd2ce26c66b51', + 104928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '500ac9d40951b2a1a4d2c775b56a7c7e7fd74f8e48bb048973cfb3f0bcd99b52', + 104832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2137d63af2f1c3bd17157876bc6befdc567ce705c551a026a3a1578d02167e6c', + 104108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f6bfbbf07c4145c3feb9883f37e90f3302d18240b37d9842597a0d52158f8c7', + 104672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ec9f63c78c87bcf36dc1544a84ee03a078c09fe06988f903e2296a57a0910ff', + 104664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9eb5fc48ca60cde5ed3612e3381cfb5ef13ebc0f92c07cf5ca3f9171ccbcab14', + 104640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc41e2c5977c7bebeaf6757d283502a794a8b8628640d38d757ddf241ad62799', + 104772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee19533ebf100dbb59b3ee56d9c1b0b5bc1c40a9e80a791f3b2353be1dc9020e', + 104624, + ), + }, + 'NotoSansKhojki': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fff0f1a532a84569810a027ecb1e479c96ba978804fd4203b68839181ac62c86', + 75924, + ), + }, + 'NotoSansKhudawadi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0c341a2f091baea863706b80aadc1215fa6d7565037f29de3e3ad09474436e7', + 48368, + ), + }, + 'NotoSansLao': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0ffac075a16c4a272ac02ed5f037a4d53f9a739a29e02ce7fd807d282fb6bdf', + 51160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '363f9aea216fcbae542c011224a219858d5150966dad1610b937c57e8923116f', + 51328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f0c4cbf649b53ef4b0bfc8bee53e5aa8b1e995de756eca2469326abd827a46b', + 51284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60912345c6ce7a1709bafdef6f094caaff9224a65b99017f088cd91896317806', + 50980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '990e992af51e9f892d6313fb032fdf9707f855aae57fdd22cf988b5ccefb7738', + 51212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a629acc62156da18b0b6c9b3a147211cc27f0c93040a32730c6fc0b3ae6c5c84', + 51204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15a0a29a54c7c5ddc29818e8a0ab91dca57e7f8f05db02cd001e7fecebfc9c32', + 51124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3dc6fed3046b44ae5262bbf24aca2e369cbb7767a1721943ef06f30ffc0b9e43', + 51232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '060c7cef8feb121d7a0e97d3eea5c549dd433e59fb26fe441864f56a517d0b0c', + 51064, + ), + }, + 'NotoSansLaoLooped': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97a586646feb606d74bfb0e6c7841edc607d6ecaadd7c81269b116dbd893fcbe', + 59288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1e2471d6081fa51e614fd398974effde7c95b64a7f518ce6eec137508b2b65a', + 59508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4bacfa7bb05a0c5950dbab55a04e815395c630d2c4a3a13e0cffb89eece23786', + 59484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '393fdd18386da8f8baff2e5ee2b2c2468d22cb5e0dfccd585b41bd7a908b4c4b', + 59412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58ace7b92052d24e9d9b086a6831cf69278d9b0191e305613988278a0aae5797', + 59844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19489d96f96d237f32f7a614c3f95f74221bb04a846fe09cdbb3acdac75e5a49', + 61788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36ac63a857462cd06c47cb5898ab2f3b14a09934755a1c378ab498472b7db46d', + 61724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a19ce05fa968d5c94a29957ec9d9b1aac6c2d38df15ea5b51c5a26464199046', + 61804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '904a783192ad8ff4dd8a6f8920c13b04aa2f0423647923440feb8027eea5ceec', + 61728, + ), + }, + 'NotoSansLepcha': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd31405fd6a829d47edeb6e66c28f136d7ec81c61accd4c2e450036e343cf37b', + 52480, + ), + }, + 'NotoSansLimbu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a86345f79d337abd6b399b58747957927c56d0dc26131e131e022aad314d88e', + 39268, + ), + }, + 'NotoSansLinearA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16a1a6f1aa3fe840f3bfec83c55666f1a60a52051fa32ffe79cac11e7a754747', + 104760, + ), + }, + 'NotoSansLinearB': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4b4e37690d67a901d4c086f29b3702f079d808e2d8e7ca59c57c5ec5c0d388f', + 92600, + ), + }, + 'NotoSansLisu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d06bc82fa14b7dcad217d4876f3d272283940e36e4c95869a1d0e63c94f0061', + 37180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78729dd1356b980918ffba5f076a640a9ad0bf9d780c736c87c55b32bd2e5fe3', + 37264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa7885a8d8fce010d43f332e10355d667152b05f57999a2cf7ef65443f74425d', + 37216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65c4e971a406fb65495105df1cd529a921c988da22aa72754236b159c34aaab4', + 37180, + ), + }, + 'NotoSansLycian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75575abbe344a6327d36709c771ce18f37609a7875a1486bf4e9eda959d814ee', + 3380, + ), + }, + 'NotoSansLydian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a418ba1198fb66696ac7d03e01a96f2c3fcd96afa3a2dae1745ae900e99e9ac', + 35112, + ), + }, + 'NotoSansMahajani': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '649b6957226db16548ed202198b603c9828a20202117dd2eb505204233befbc2', + 44252, + ), + }, + 'NotoSansMalayalam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab635754b175cbc6e55f93f9c8a89f9e763a2c2b1b0634a8405d8d5b6defbec5', + 105632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f1f7f1989f4048180ed1e67b7dd872e258f3d7dd2544772c0295a787258acf8', + 105708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8531ad039da2c23d14a85d510646f4cfe040308e78f02812454d5d9d68c13924', + 105696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2101dc12d8e51492a2d2a83fca342bf22ff8fc3aa804554790a7829df9959db4', + 105588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '967f27872716d7e675b47865fc4ce574e669cbf9ea0e0dd5386c817f9cfea990', + 105628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c91b2b45af8135e4266c02e5ecb8e82f1c2ccab6d0f347563b29f6c68b2f5873', + 105652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '93540bb6fd70b9569d51f3a8421f72aa2c9fa31f119ee47e087e7ef522894415', + 105548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06491ea28d18807f3a3a9f1978ea04701232a3a6c8248b71d87e6de0a5caad8f', + 105664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d02b146338eebc28536ff018656bce2494951b3e99315ccea8a9b50621c5c69', + 105580, + ), + }, + 'NotoSansMandaic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a2406b013b73787f2cd5a043abb21883db510ae2702f0bf63d04621d243eb14', + 45116, + ), + }, + 'NotoSansManichaean': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56aab2f923620c30318ac8d8e7b44e569cba10f44761275b742e8d892044f02c', + 62772, + ), + }, + 'NotoSansMarchen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3971b51afd1115280671e3af5726086f5e9045680523b0b5a3899bdf82c3a752', + 154284, + ), + }, + 'NotoSansMasaramGondi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c0f00d818dc81f6d86468724c72cdede0b9a4e90be7ad97c0c42727a0e4861e', + 57828, + ), + }, + 'NotoSansMath': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34dc71e465cde0773382b7ce71d782ed9a4ad4a862c66a881a970edc0008d6cc', + 527624, + ), + }, + 'NotoSansMayanNumerals': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6faba247c47e4c503f31fbc41cb881d3c875608464a8f04f1e44f8dd256b6a65', + 34448, + ), + }, + 'NotoSansMedefaidrin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab5d8ee17c3f3a6886f764ea3c8a8d0303359b095ea03711d0eee1a785e358fc', + 66120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61912ad5e529a6272e1def3c8e9ee538c0f2879244d48a1afbb02fd144dc7880', + 66164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '536c98c8e5d5efe7e0f5c6573a5ccd7871b410bcdad2861dc53d6c0dcc236857', + 66184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a150509fe38b303f5a573f5a4af92b81e9754e6b521b78f6119a6e2655f0324a', + 66096, + ), + }, + 'NotoSansMeeteiMayek': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c241975ace1d207dcfc7ea792b58ab36175fe03034f7fa18a7aaafec3c5a5d12', + 45364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd9951674e56d27f16d45d757c92a4ee9ddc4b7c37e15ae97c571347f369728a', + 45452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb8b5946c27d3587020b762c3162414fe8d98103e307ab39fd87297e35e30b39', + 45428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a13fc0895d0ee53a8156ec2dad6eafbc492cafafe5be1610da0b43bcb0cb986', + 45252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0a8f3a2c8e3114a1d6efd10b176d0b4440a5f17fb788358ca495a0f668ad1b3', + 45336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9dce11b0897f9abc65a59f891db50a5039b2ebbbb0fbf313164b125519f14fa9', + 45312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e3ec5584ee51d06bbb84588b5aefe953b677bc039d64f73e6c7e65264549a78', + 45224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2abbdbb84c3ad0596681656ed5302282f398012bdccb097af71469a6dedaff43', + 45364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43481f57e1df05886a37b32a32a1c84cc6f650f098f1887fa74a87f836e0ea24', + 45252, + ), + }, + 'NotoSansMendeKikakui': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '307ba282ecfc242f9cc381a0d077dae1a3e2c9ab33f93c5aaa981f6a61d88210', + 62960, + ), + }, + 'NotoSansMeroitic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd6a32f1c9f7b4ffaa0e898ef52b42e640692a2d5eba8969135440509dcdead7', + 60520, + ), + }, + 'NotoSansMiao': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '541d6aeacbfa842a82942c259de102e0c132d4c64f7c0463e98c9779ba51c022', + 67632, + ), + }, + 'NotoSansModi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d34cc3dd7b140161b1f1c95dc9d16b432e8fed706f4fce007ffda15cd2c9ded', + 77880, + ), + }, + 'NotoSansMongolian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0be602f92218343ffe71df1593f8b2686220e50edfab47c5094f7d40e527a1b1', + 281604, + ), + }, + 'NotoSansMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a7c15a47e0cd0d2481c39904c0b6959e0da34ab04e2bfe33299b0f306f221b1', + 389296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65e9bc49a3a62d86d0cc7457559c9a73975e19b2277e401bb5b82ed07406d8da', + 389820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4442f7ab38f99becd4b0f504a5cd0299b7b85d42373471f1524e701077e26f93', + 389668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3e000b8a56b489f9cd3d1d531d2421fad3c67835acabd39cff8cd8299fa0dfc', + 388844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3235d1e5b88416f2e53879a502e160edc9ffa7d031df9ed80c56d23f4739a52', + 389248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00cd4108b2d604412fafed145b95f8572cf2dd688df80e9f8042901e681e9caf', + 389156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c75a35bf159e6e39c2f8acf01d53e62c7805e281ca8ebaa934c6b6bee47c8ee', + 388552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c8015ebf7da88b610478fad402fa17047994aed3bd2bef6168164d7643dd65a', + 388864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dede397cfd0280db3799cfff6f64faef0979d506f47f3e0ca3b0f591addc9002', + 388384, + ), + }, + 'NotoSansMro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '82f89ca45f1e089b9f2aaa249fc1b4546530ed7cca6eb61b77138dbe3cb1510a', + 36648, + ), + }, + 'NotoSansMultani': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad5f0a91fe1eb8654b713cf92c7b135eac5a74d02a8b8e439eba489cb026a9ed', + 39848, + ), + }, + 'NotoSansMyanmar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4290ec0bdb63cdabed5a86b29ca14398f49b7a42133cdd4de399e4fd0bf4cae4', + 152012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '505129d788f4c958909604069fe3b4f2ebede7870417f8fa002ed7c1535ca3b2', + 150148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98fdc5883e1306abd65934a3d9f343463e617fe9b6b4cf14b5fb8d57feb514e0', + 148260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7859a87d43b7590a56e8411ec27f0006f335d6f62cf365b11c868d2abac036d1', + 146972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '845494cc30a600aa55215811431d3d06a4df01aa9ce779aebdd4acdbc950c663', + 145856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e41dd86960d6649488f627a8108a80a5dca08f56f85c5405427dfb6197f99692', + 145164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '922086c3edf68efbfa903fde4a81dea461f33009b41d026c010fa2484526a76a', + 144644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8563eb11110c3956a8117ab2c1ffbbed9b8009d7f75d8ca6aec30b21bf839bd1', + 144596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '855b900d145f1cf4e5ec11f4738ac30b5469fb57c98ca172974b74e642e69ca8', + 146172, + ), + }, + 'NotoSansNKo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '081b80de5b3ba697f0cebfb6af860eb4151eb061abfbbffbfa53518d88bdb489', + 53156, + ), + }, + 'NotoSansNKoUnjoined': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52182fa2333c38af00b3b965e23f903ba8e777f94f26dadfcd9cba3953327d53', + 41564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2ce1cda90db4179eb4ae761d9b5edea005905b525ea50de65fcd36948e48c05', + 41752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e40418b15cd59658db4096421bc76fa77ce5a7654ace0e48a7d843a081f3ee7', + 41688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '038201361587f577c1aa4a19ca01ee7a475c4faa2fa4ec95fd3fd4c9dd8f62f4', + 41648, + ), + }, + 'NotoSansNabataean': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '002b16b812b00eb23c4c0806a076989ee2110f7145b59a1d707a00797fbc79af', + 38048, + ), + }, + 'NotoSansNagMundari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a586337af192e89dff0137470d2f62674e9c28f45d2ba74866868d65e69d345', + 39220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24a04fcabfa0c77ae516ed304c48404f323a43211116cbe370468e247887bed0', + 39296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af6fb098579ec688c3654285e378b2db918b49079d5c9ee52813ca71565f56d1', + 39236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ff883d0ff51707376ec40bf3220451ee1462584ea951cc25e9f82fc449618a3', + 39192, + ), + }, + 'NotoSansNandinagari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f3c8c2392b23232c58d78a1be76dc4bd3911c552a9a27b1d395829b0d5c47ac', + 122428, + ), + }, + 'NotoSansNewTaiLue': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d56cd30540e23bc52d468b5dafbf1353c4c7c14cb36f83aa8e043e9edb8804d', + 48080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f40ea61dc07f5599472a82430bf0b2a821bd6a61d0998c57ac07465e23265fb', + 48140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e66f11dd92810a31e1db1ae7cf823b08032dfa6b5e614f69a9106b91302c7204', + 48108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4e62f3c7b53700d6477716f893e100bcbaac96515d7f51ea96e7c36e8a29ed0', + 48056, + ), + }, + 'NotoSansNewa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89d5c8ca33dcbdc18681ceda522cdd4867cb459d75cca8426b20826f77cb0bd7', + 185308, + ), + }, + 'NotoSansNushu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '554e93f7f07f00ad56fe6d22aab802cb8c5a922ce31bedead672f993d139a979', + 147252, + ), + }, + 'NotoSansOgham': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68ea23a4ee192e33c9a8d641b192ab479c6112702a8b666a085a185fb4050fec', + 30924, + ), + }, + 'NotoSansOlChiki': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5cf0774bb681157be8ac70c0e11c4b54058837443845bb4767614017b9e9d9c', + 35788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b34a31e4eeef61d9574130ff2fdc49db85b3551772a475262b1d97b5ad1917d', + 35836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd50dbd058be4a60dc22d17727ef247726f90035ccc37357d08a7b1d6f8e33a01', + 35832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e24cbae10b939705d104f48395957d833b1fba3ed4d6a884ef882343976b0a9a', + 35764, + ), + }, + 'NotoSansOldHungarian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '601684f6267fb7cb536859db998daa4a65003b590f9dde635367ec6cae7b0b87', + 83708, + ), + }, + 'NotoSansOldItalic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65c31aa6df9bc652c94b16456bcb1238995bf3f68a3bf84e7dd982435a1cc430', + 34008, + ), + }, + 'NotoSansOldNorthArabian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '541b271eb91261ec229d90c0c09cf8371bfe082df99fbcd67a7bdc7d63dd9e5d', + 36912, + ), + }, + 'NotoSansOldPermic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9480a7153dc760712f88a7fdf8117020f4c3430783bbb2f18f17cb6206193ea', + 33956, + ), + }, + 'NotoSansOldPersian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7065e7b4249a861e5b3a40c4c86b5b71f98f9909c00d0ae11e253fe802b8fa80', + 42432, + ), + }, + 'NotoSansOldSogdian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '983623232bcb91f93de95ab9f5469a4995d03479213af19520cdc4396d2a28ee', + 42192, + ), + }, + 'NotoSansOldSouthArabian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3205544339497298b129016acff464ef7a883d573eaeb1b4fddb3cee0b514fcb', + 34960, + ), + }, + 'NotoSansOldTurkic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1be36bbb74b45126218158d6d1e7435568c6b430d6a4f50386b98a1ede52e362', + 38220, + ), + }, + 'NotoSansOriya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4193dee398762a91b47bf834a364e1bc69d3a3366dff19d1dcb95772a067bede', + 151704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb11a32c95a096de253a1d42eea8f8806fcabbc627b054b2515630c993615d67', + 152444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a2f2103c8b0027e4505a6366ccbf09bd4ade03ac2455d9b6225bdcc7fc69169', + 152480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2791d8f566cd35dfaaa9af0ebddf6dd89df6ff02de715db81951011579ab9910', + 152252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1e709061502c891d387493653bc82c44cede83cb2859997d5a983cf63fe19e8', + 152468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2008d3fab9e0a986857bc3df9cfba405fedea57e0e8809751326d3158b85a48', + 152500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8013b60235671b2aaaf21ee6349d99c1780d81d3ec18165597bfd56de938190e', + 152512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1b2faaa2ee05899a027a7ef3bc534e9b8555cbbd26417a2c4c4392dd9117a38', + 140004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd32aaaa08f913a8eb06f3d9a22d6c883e86b4ecbbf06c507f05446cbc37be2fc', + 139804, + ), + }, + 'NotoSansOsage': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17198ba282cf83834fcc90629f49556aa667c9d82fb07204868b795c9d1df300', + 40532, + ), + }, + 'NotoSansOsmanya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10a88800b867444b62aafd6ced8b1d101c035ca692a85c84ed22cdf647543ef8', + 38252, + ), + }, + 'NotoSansPahawhHmong': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abf579be12fe995fbc09679b94a1c7d8202903b9fd18f730113cb57f762ec540', + 49248, + ), + }, + 'NotoSansPalmyrene': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '072e0c15dfa4818122fde6953ac1a5a62e7d63ea90dd1ff883886da01c10aeb1', + 35560, + ), + }, + 'NotoSansPauCinHau': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7763a525d670895c4bdfd765078101f07e72c5c3d908e258ecadabf717e2d96', + 38976, + ), + }, + 'NotoSansPhagsPa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cd2e1817ad2898df168dbaad4a37dc4a92190584d9df0c08ccf9ebd771227fe', + 66520, + ), + }, + 'NotoSansPhoenician': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '559abbd7dad195e0aad6285f9869d59eb3a7e96b79dc355cb18082c14c40e3c0', + 35916, + ), + }, + 'NotoSansPsalterPahlavi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25411ec24b9177fbfb4df440dfa14d1413e245506dc36333ca929acc856a5999', + 50936, + ), + }, + 'NotoSansRejang': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff182496c7d989c2592b5fda924cfd769aa870790ef40ed054b3e6f7ace05863', + 34316, + ), + }, + 'NotoSansRunic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc913292b7b17e333d1f71e7e9ed57b5805e7f84f8549397a1f03bb8c460f2e2', + 37064, + ), + }, + 'NotoSansSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddbc093810a71f7ac00bfce330df3ce5f44b8278ffbc953aeda546f963277d06', + 10538544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f56235a58c1a825390b4375365612a0304557cd76a71e82ff60bd04bd92c5104', + 10543924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '049c2f219b203f9eb15be8cea973e3078a4f67dab0bd854bd5522126ab5eb6e1', + 10545416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0ecca1c67a4da5a89857703b84a44eba9fce7d7b5941bf4285e8c0a8346cf60', + 10540376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b85915277d672d101e3b4aa74e16e9f88d0f13e6552579e92a0d54a1291013cd', + 10533572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a9100a1e77488d43c4dc38cfdd3602f7169181aa8b2696ff63d8ad90308ff1e3', + 10530080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2179d44af51b5fc3db254102bd9710fb50e1538754cd33349f1ae1056bf7f3c8', + 10530140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1364bab1dd5a59a96dfe659ea03e8a120af791abb99c2b03b4366f92ed16786a', + 10525160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc982dc2a6bbf41d3144d22672c7297e210612c4b95aa778d4fd235d52059220', + 10521416, + ), + }, + 'NotoSansSamaritan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ebd598088cf58542a28e8d255f645c3b2ffd371f6e4407a5fbb559542c17a16a', + 34400, + ), + }, + 'NotoSansSaurashtra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b35671f9353fb5ecc59023447f313ac6a98a7df4bf9bb0718ac9d86dceb0e2be', + 48172, + ), + }, + 'NotoSansSharada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c562d0efd8d348fbce8b774e57ac4be45ef6e9800cd1a2f1360d008b25135269', + 85264, + ), + }, + 'NotoSansShavian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '956827f27f7148138ddbeea3c7e94a41c7de6df50487f9432c3ea06ff593ce68', + 36376, + ), + }, + 'NotoSansSiddham': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e454074babbbf16f975de46475a45efbefcddf47761cb10e75b7ef7780704fb', + 150936, + ), + }, + 'NotoSansSignWriting': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb200e35f8394aaccabed3c2f8af12114ef6af1455477cc7384ef3cb32e35753', + 5324260, + ), + }, + 'NotoSansSinhala': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b272ce4bd02de890cf8700e2f0d6360d5e9fd7363da6a1b8562da8e4333cf5d8', + 235984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc30dae7ff6c79720bcb44bf142afbcaf02d9c04db920aabacad37f14173a536', + 236008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '730e92fbfa5f49aae04b67b28ab04b167ee65080753a6fcb3dadf8cf37e63ab4', + 236076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b5d68b31d7bdda48edf7e75e0cc282933b4ad492d4c8ca349a1486786ab75ec', + 235904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe42d14225b73902d14fc1217eada9f79913fadf2119580bf0093f7089ed21c4', + 235976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c0f9cebbaf0ff18d9199e9d6cf7a1b757bc87929615d7ea21d4c9eea0ed90b3', + 235908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25dde86e347ca3e6cd2ded5537e376e63cd9ca77dc411c24c6ee329cd8465478', + 235580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '297d9973dd0b8f46059a7bf33f3a17909a07ef5e9c235a08677998b18ea1f0b3', + 235620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34b1a7cbd7ccc5a6499d7d6a700db168630d041ddbb6185490dcf680f82c06d5', + 235288, + ), + }, + 'NotoSansSogdian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '223a203f3cc9f8764a2a02deda4b68cf57f2554bb78992dd0324f7b78bc72823', + 92924, + ), + }, + 'NotoSansSoraSompeng': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '401b55d8b9c8ed7eae7365a60f015a1f9448e7975b163b150c39fbe017974a2a', + 39220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0ad3f1bfd27d554d6dd8c07e67c2467c8ec5a0b9fef42237d18acd19e87d52fb', + 39332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7895d05ed111408e9d4caaac83980c9e335d7100b019e2d640bc7121ace7734', + 39276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ceebbb329d70cf733e1527fca4711aa7f6300c721c0c44daf21c950774034b16', + 39228, + ), + }, + 'NotoSansSoyombo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '668125d12237beff6c06036d562a48ada2eeebd87f108c4c867cc3b1932a4d92', + 93392, + ), + }, + 'NotoSansSundanese': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ef7d37af88fe79273873f12ba31b24d6bd6c6837e251e5eae38e8fd0e234fa2', + 39544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1e1f20b7e43ebf9677eb53ce4f93a1f50c39754cc8b928e6c8c17a300e35348', + 39588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50d1acd8195eedd560281fd7401b9f73c7815c089b6cc66eaebcf636ac0d5a60', + 39572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '621734c2d3c128faa4137d7ffffb9e33c3f63c3b4706a1be176f639f2ae0296e', + 39536, + ), + }, + 'NotoSansSunuwar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1190c134d2d6e8df9be3c5370134a1d426689df6b16ba1129033cf3c1980ade7', + 40100, + ), + }, + 'NotoSansSylotiNagri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f60c870be3d0a42a535be2e79468afe812d0ed4bcc064bba017156b124ddc919', + 45896, + ), + }, + 'NotoSansSymbols': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f67be3b6d560c6f2ad9b18658b1eeb56cf3e2b94715f6505b9bfdb7356b0845f', + 183972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ddb24b1bf18d0011d0649a45d10bc3e303d47cdd2836cb9e2c345495f855d77', + 183984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2e8b18d75f78b4cbb8a7457531aaf39fe217785c9dd3fbd9ea842d14d294431', + 183932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4942cf29dd874c976fea691a7c52b67183923a646335c13ad09de11a36560b8a', + 183596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '699a45d44499ab417926750ad3787588f8cd4251be738f2a83556341698dd494', + 183564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71fec4230cc900769a9548c157d81f3e58108c888eb7af2695c590a2b0f185e9', + 183484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5f8ed47fb7756e8d312b985b60888722b8440458253da2e19b98252f858649b', + 183320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c2950d554945047155875bc044dbffa2e44b0e16cd6cd041d9597d436dcee1b', + 183300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cfbc9de5a1d2d91d832877d55c939d1029f534956ac39ca8259e335b9c691cdd', + 183148, + ), + }, + 'NotoSansSymbols2': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '760ba6cdbfc3d581392d9a49346f8ecb1ef3e56cbcb58d4227d8ad44628a96fd', + 702944, + ), + }, + 'NotoSansSyriac': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2452bf071cdad193e1cd4ca2a994862817e8b01b680da5120244c46c3f6dc2d1', + 83144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '157526fc9a1e8dd9b5c26c006db52f34e619012036b17e89417221ac7158b365', + 83232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f188789d3be28916abe6e5e014611a3738916395f10931e85fe3adbafb6ead1b', + 83244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e846a224fd9fd9cf882ada58f8a7100cea2b19822cc742729085d11d02f530be', + 82840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c6519a52bc37290f52a298159c63a087da0d3a4cdd640f94948857cfd2f5125', + 83128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd19b94e937fdaf416840663e1dc3269a09903454d642271ef3277a272113fe37', + 83256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52a66b9e5895a482c7c4dd9aabbbe9111cb6717eaba27cc563a12562147224a0', + 83172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2eed3204adaaf4e9b96475d31848d4aedc52bea61871dfa28302e118ce29a5e7', + 83248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd37ee2670f8698a24c048c7f677ae4ed965644e30d1b73327fde5b58f84c6122', + 83160, + ), + }, + 'NotoSansSyriacEastern': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7c66d8c4e03160185c1cebd429e30fdde608b36210cef4432ef2243f404493e', + 71296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e992c5a7c800364acc3da77ccd0ac720061c4f63b15c86f975072f77f772b78a', + 71404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1ecce5b025e1e193a9d3ea7084d4a4669c3022162d44829d585b349de8204d1', + 71440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36d5decdc8d831b4fc0512f9c2fc5e7f1537d619bf01cbe402470c8098fd8bce', + 71036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8050c6bd41a20ca9e7400bf3736f50ba82e7ac9f79100246819f9bc7206a469', + 71300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '463a9bca3896897dbb7a04405c01d2a9917505517c6240935f082a9f91a79791', + 71436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61922eaa99574e494222ead4f56d6e33dac4b493c65f97c6dc3cfeefcfc056f2', + 71324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9c8c10154ee4d75375a72b42c91cb6ba362b7fe9539389b2a93932145f27251', + 71424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3641ec03591494ac89d909e24f0ef59f349e0919c5aad63c85dfb0d37ec18134', + 71356, + ), + }, + 'NotoSansSyriacWestern': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '811ed099676dc78cc835bba1eae519b26a0ab1c1581c0e8e1f9a3be6e6a447bf', + 83424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11f6766408cfdfcd83662a84f8b6e8f8810fba9f2168996e96e43103fc584d8e', + 83616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28f2dcc8402ff5051145e389b1eefc630f508d3950183caece78bf56e2e69d52', + 86820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8eac888e5e243550b46ba759035ed520927782ea3c4ba5b4b6c0cc2171d820c', + 86352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6ede21060d3821f6f6bb356c44101bd0bc72e67a942563aed883201de65c11b', + 86704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e64ec59593f2e9ebeafcf404813aa341f67cac43178318493809911934acfc42', + 86784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f8121bb77d9c91b0778dd1dc4a8d396aa30d58b5b387c3d8bce4984201fcbde', + 86788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be0f0a2aa1295ea4ec7c09675af7a9646f44e807d5875d22e6c18ef74814c4d4', + 86896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '050e60467d59fdcef85f7dbbd861c6cc1fbf755716b905e7ee6e041232182c83', + 86556, + ), + }, + 'NotoSansTC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9cbd5f63040e6ae50f1715351b32f43acf592a1eb128617fd432c9c38f20bbf', + 7088644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0db73879a96d3626f42d68bb00cf6b2f34082b312ae6796eece9a2592f9cac8b', + 7092112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b70102b5d688323432d92427b70800c3f5130c8f548c3cb1ddae30064322e77f', + 7092476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17d9b1bfc0eb614c5947422e575e4bf664afc809def6cdcd7760d76c71928e50', + 7090552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95f8eb752ac1451f647591e4e3662d1e22a51a301898ecfd9415c8d2fbf95ea0', + 7086672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '903287128d4b34489a7ac4f7906692887ed83f3e748943c3ffe7e04709c74db2', + 7084036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3232510c1375fdfd9b8cd94cb67770dc9f58fb12133d5e630a2ea8fc0c19e7f2', + 7085332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '53f7ed972ca43163b3baf6e981382e71a2868af2c22228afc128b2be1ca503a5', + 7082004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ce5713ef1b1c63fba858d7e4479ed5a65e8ca9577f439bc9ddd1c28dfacc388', + 7079584, + ), + }, + 'NotoSansTagalog': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccb4c5bce40b659ff6c9c34bbf150ba07c9e6cfd8e18a58b76b3a11de603db3a', + 35828, + ), + }, + 'NotoSansTagbanwa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f021729d9bbe929461b774595c146cef1ab19d31fee5c543c645eed2a0143874', + 29616, + ), + }, + 'NotoSansTaiLe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f33c58ed608cfef808a9e1db864fa9f1ebd757229956dec814004db7a5f05ba', + 38604, + ), + }, + 'NotoSansTaiTham': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92dc2699a67065b88ba332010dfe9b7bdfdc4d7fc39a4ea63f78f899f5b1941f', + 117668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9947d856db2ae20fa2b292e66974f16134502683ff16fae3f49cebde0e8f0246', + 117720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6dbe7b257544280d62ab33deba58ff0e9849bd706dfe9b0ffe4378507d92cc8', + 117712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78de4e4bc78b6eb1483c32cdbbaeeb8a3788ef8cad19b59ea688af26932f4324', + 117600, + ), + }, + 'NotoSansTaiViet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f65962ca5e88baeca8b837463f7567b3aabaa0657196036d0a9262adc11b8051', + 46172, + ), + }, + 'NotoSansTakri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1b751b98eff65c2ef55d9ed274b1b4f71d7c2719990b49174f997ee314d0994', + 50404, + ), + }, + 'NotoSansTamil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '762612357ea5b42645bfc83741e1ab992842a0c9895a9b7d3328751a455aa421', + 77816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ecd4016ceddcf369ee11a505333a909d4eb7527cf4c26d569c39e6ed08fb60c5', + 77940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19f8e4ba1d66ca677d90780f6842da24249393a831d51fb80731f3f1e6fc484c', + 77896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd629ab496fc94bc622757189c43f9aa08951cabd24d6f0c495f9cbe0d8e8a4d5', + 77700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '227563e14e22d8d339d0c9d777bb39ff37938fe04acd7d52cd77cb0d8c5b9c4a', + 77848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10dc79d0e15536d9c464fb6d22cce3bbf90f4c4b2f87858cc10e50c7632a7947', + 77836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba77eadf1d0b18e8a780105b2718e70f1b8330597598f37b320faa7981f19079', + 77732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d05e4a6951199baf7f75878780adaa4289c2d05fa0372ad46c96e509a45cc9e', + 77840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9da2072fe614d5a32e24cc8b4e02595bdb003520ad0334ec650d9188406bc1b6', + 77748, + ), + }, + 'NotoSansTamilSupplement': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b0b304baea955a591a7364ff6d67560242c6b05c828a1718c48ff6050f4fe7d', + 45524, + ), + }, + 'NotoSansTangsa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94c1065e1e1fc3038348e8a322d134f8cc30fd6f6863cb926a8849b1f389d6a6', + 55540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08c5302cca96272da432d9a373573b97c74bfa1c2cac978970fb73ee7e4bdd04', + 55696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69cca63082e6e544e35720de6fbf267a9ad515d76d0fb1c28316580ec2ec40ee', + 55708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b484a72bba600b5afdd43e98983a144ecd0497a121433591e1b60243f90386c', + 55620, + ), + }, + 'NotoSansTelugu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c2413f8b61df1b93650888e074d2bfb55f6e184ca4a5cf3eeeea2d4ec76f938', + 178916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1599d030608a790f16fc250d5a229f699066d390ea78bc5322496e326a93b97d', + 179228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68af10ac46ec9105afb5feafb3ddd63d76f7c5d0e3bbf1f3c7556db0507904da', + 179124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b522933f2661a591bdd530596a634e2f24af466f597b6f724d50d55ca4b5f1e', + 178468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fe919a7cc064313cd30dbe19224b03c35fdf96e9ccb131d8820704898225209', + 179112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1c4a757bc19408ca118a43f679b93b8936e220630e8d85d5f945cce465eb45a', + 179176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43c64244f06210779dba9b737c4c752640fba657550a0c7e7c7f7db6e133cb32', + 178920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e166cd992a19a3f469adf2b6d51d59b10e9e040b4d86e8cfe51aa2025768bccb', + 179200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b13701dc3a170285d101ace6aab3c7b12d1b15a8442254c3c7ed66807ae464a', + 179104, + ), + }, + 'NotoSansThaana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a27ba158697cec5d4c5f2660831f9b27cf175e6bacb5264c4b87868fb7cc44ac', + 46028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca262c852559bf3a1bc42b19b57a3c22e74ce5779454121937bef47ceeede205', + 46092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a53430b5dd601ce0ac6172df9647668b9be55ab0a8e358e2e15d068fd7d3219e', + 46100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61a88c8735842984cc8dd3d71c8fb41eaf7efcba5a5ec9c5265ac659fbc9d0ba', + 45936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be512508e7f2603ecc8a774be5cb1ccd8ecfeb7bf491473fcb023f74d1c6bfb0', + 46040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42859d62014d377482ed529a84690f8b085ccd579761d441207fa4a4986d8a88', + 45980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45b39ac4c3d49957ebadecfb60a5b5d2b1fbb214979dfe1dc88fa727d4a23e58', + 45944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed500837ef1768f86bed175713d720b608ba015d98fda164e3fbdbd0252688d4', + 46044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ef23387d7a50cccf438bcba2dccd144677221b6e9d69bd698e3a900d11f3c4c', + 45920, + ), + }, + 'NotoSansThai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7bbc2f49a4e30dc4c48cbed48f518638896c4efc173b2777f01107ac3914b528', + 45684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a005d97aeddd457cd3e2090dff1511943ae6d9b5242b0d2fd1c4b33e889e3a0', + 45792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9af78c8210cefaa54cb5ef7a7a75853f0be4c1bb426041e2f24bea85fded8831', + 45728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45a22ac29a95e6248e979cc8f8c72d52eb225d619ac2be4d1bbe8cc3492c5690', + 45636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c12b8c9561ab6257f87e406a46c461cec51d48b905982a79dc3e436754de51aa', + 45720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96b4299044e48db352b47187e3bc43e0023c73cb05867da3db5cd214ed2cb2ca', + 45732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b9e57dc90709ebcd4d410bf7cdf6cb6e4ec686d6af76884aed76bd7b0f84618', + 45640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c3f0bb98d61d6d025bf9adf12c9bec60ff463f318ce332ec9b359f7cc8b0643', + 45704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b107044cb13f942a0d2ec23da65fcd07ffa3e6b55d97ed377c0541ca5d65826', + 45584, + ), + }, + 'NotoSansThaiLooped': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '765ef33ea499d480b94ba8223a74d64a438dae54eda0d8672c89b5d48195fbf9', + 58228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70c4385cc57b49702e57330cbd927371ffcce3712a8574f65f00a7bc28e9b214', + 58476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43ab36f46fe1ded01c8929f9aa79627ab56cfd216ff49b90d9ee49b42629989c', + 58416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff049d43a4e821e28d5c0f157f2f403a8a5d4e470cac13c03105bb1a6a7a6337', + 58624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af63af28ae4bf54f82cdb2d36c977eb555bdcc7a4669d009b8c884cc628fcd9b', + 58724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e3421acbb2675079a8c25bb02e073a0d676b680a3460d4576626ddc6cbdbba3', + 58740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec5f6c93707d54e1ca613874a39003cf54bda3355de21ecc336e2859a19ce1bc', + 58616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11dc274396d106b44b12abbac9afd6a39af9be8c1fb69d4c39786f3bb0874857', + 58728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bdde01b40811658816aa8affc24323c0a2b11e141c203bc126ee721b0d7643fe', + 58540, + ), + }, + 'NotoSansTifinagh': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7bf123d7062b9f11901b330529ede1ef9cfcf3e2830b45a36420ae466b24a5f6', + 57896, + ), + }, + 'NotoSansTirhuta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ddcf92e9f5dcf74b65be5ccfc8efc720b9e6a0708dbbec27042465ffe1e94a4', + 97732, + ), + }, + 'NotoSansUgaritic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a6000d4adeaabd09864791c020f940e92bafd7f62052a934aa303109612320b', + 37020, + ), + }, + 'NotoSansVai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ae4a0288524132875dbd839bfcff5fbbc4317c1f1c1042f2e346fe42788096e', + 81536, + ), + }, + 'NotoSansVithkuqi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6c3eb1aa41ed4b68cde87fbc759db13ddb4771134ba12d723ea5d3b66672d81', + 48468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '244c9637d9d281cc5467a52aef395aed15383b57687e67967e9fcdc486cf4658', + 48544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a015a8ebefd987919c861bc7cd74bd8d81b0fd4dd28d751ee6b07b6361cd64be', + 48564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70c22ee5bf357e5abf7df268e2f77a5a57897ed77f061e30c50001a7765895fb', + 48516, + ), + }, + 'NotoSansWancho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4aff2defed069feaf11a49060a06c236228bf57e0ddabce56eba1de4a355e3a', + 44760, + ), + }, + 'NotoSansWarangCiti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2813df30115b010f6d35cb993f74b86d16c15d77d32cabf4bbed5b48c2261419', + 61572, + ), + }, + 'NotoSansYi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20bc994a8a2554b70334dfdfa8d96b4f645ea1913283372a9ddb94028450d96b', + 210160, + ), + }, + 'NotoSansZanabazarSquare': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a78374c2af8412ccd464857e7abaf3e28fef8d9b78512b4fdcd00e1c20ba8ec1', + 47908, + ), + }, + 'NotoSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b74191583800ec43403f0f36ea56fc9f8410cf71fabd95ed9dafa0d155ead0dd', + 444480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83bde39565b5439caf4a5f3c617f8f3073a7f1d4263d94b9981bff28a3a2e9dc', + 444976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ecad1000f222bbecd26506dbbca1a075d09dceac3d2766fa5bc2f0470e25786', + 445012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6e0283968e506c67c3d4ff94093e3ff9f4d7ec3c704ff1cb51382f1e45b66b9', + 444040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '573f2e6c8b0eb3d8c159af7700b9968a51fec14d596c7bd81cd62dea6a7f9eb2', + 445424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '468d67b7f26a6f8ab83cf43a71de164d1580f62b0c36403e56d5e2963a275d6b', + 445580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cff8098b873570abf5e194f781e85078d6b250ef5b95eb1e03c390f2ab223e2', + 445524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb0883890d17c808beb303f586ce302c0d880707fc3ba429cc13111d48670795', + 446164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f3875c332a4be851f3f6e36410ec41991da972980150a87bfbb24728c1ea0d3', + 445544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6195294f9ca19ef58580818ecf172b3091633d13f44d939ca4cc3772ae8656dc', + 477936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7fe8c904cb3028bc9a106c95f71b3c66d8830cc38d44182499ae55bea5ad74a2', + 478460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '79f28a2889179ab380349d59c99406378967fb49b88c9874ca6fa055f4a20856', + 478108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5b92042eafecb92afc515cd3507891dfb3cb7e66aa7feb0f0ac4c94d5106b606', + 476376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5199f10b31e173eaf9289dce837f135565aa196c3c0f0b7421ecf788ae6952f5', + 477184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7cb14d1062b02ca48ba571545c882ab9227b9fd40c5e78fb941dc0cdd2c15f19', + 477244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c7f44785dfaca5808d42ab219acdd42a19a0a68bae142084b594263bc47b1eb', + 476572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '06bb97c589242764bcde8d3714a775440a5772d9cc2e76bf8849d7bda4c9cb47', + 477852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9445924a035b0eca9646e2e766e9ba9a0908573c8350b2a509067b9c011b756d', + 477688, + ), + }, + 'NotoSerifAhom': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6737bf5f6b079ca2eb4396a2cf2ebe7cfa8d73d167472949734136a2255dcb60', + 60236, + ), + }, + 'NotoSerifArmenian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd15e1bcd6829e9794c283643e7159100311483a38309f074584d401bed413a0e', + 54044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35adcc55cd64f652439da1b6c6621a8cc08905b5f5490f254ae04df564cb6897', + 54144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '979ee1ade6dfd0f74871f7a03b74645b242e4ffa163a7ab4a9f0663383c0ca06', + 54108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a02c73aa7cfc9a439191b47d9ad79f2c76534b6990e7f80fcb3a15444b601b92', + 53968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a561617b0bbef4a2719c2a03bf46253c43f10b937eb4bbc4369e3b9a10213f33', + 54080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90729ccdeff7ec05b0daf4650cdd8eb69fa4b84c7caf5ffbcdc86d4298baabcf', + 54024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19bf1082cda996408776199a7f9614e3505a255201d7cfb4b7d9044473b4aae3', + 53900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fad0787c0437ae5631f05a7fa2bbea93bd22a02ce9e15786830a6f353b9a9ea8', + 54216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab8ca2103633817087acf4322a374210dd803d755af719e87220f6ab21d943f6', + 54156, + ), + }, + 'NotoSerifBalinese': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d175481a1d5d2bb25ec4a1c80190150ebb0af9b556ae13e8be5738098f66e2e', + 84648, + ), + }, + 'NotoSerifBengali': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d9d7dd146f1ebf9405ac376fb69face7f3a01c95b7d7d30702658c503988d78', + 244256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6cbe01748dc958f5ede5caeb1fb41a77dfc4748473b2119a64ae42fd477d63e7', + 245500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8126beb291cd57e5ecedf7d9a38d791b989606b95e10dee666ebd7e8b061f9f', + 245532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b71cbed6b4adffdc7a0a0ca27a9cc0a7c071ba07764381ecdd4cdfe6ff97cee', + 244576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a95ebd2c9dab8ea0fac5f16cf3f0c021d7b82e6cf34a34d7086b7926061ed39', + 246096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32972ef0b2d8a2eb7f47b8f4918af1a4e45660cb9a5b757564321c076a942689', + 246572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2585d6d3da0a9bcf22def63441c8f999fc888510b21b19719c775e612b27420', + 246780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17865cdaaebc13ee3cdc92d48d4022b30ed3800442f73af2c77ae07a9d8d7cc3', + 246968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e2799f7c345a3f4b7546946f4d47b7243eb0b906201f737f8bfb4395396d0f0', + 246288, + ), + }, + 'NotoSerifDevanagari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0244e6182899115d3f191040c0d6e8589b8e8037a7c7d37978dddff9c7f055ad', + 232192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3379249a877af804c1fa13660fcf56a4966763d39bc5cb964dd4f91f213d608c', + 232664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f90ee7e60c91c2bf065ced045a3489f080115fd117c568387a4ec9d2b19017d9', + 232716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3aa3c0f61d01ba2161445e5bc95eed4becaa2526bc402863e731af50591a31e0', + 232380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60117438b475fd2a35ba9344671b74cabc80a7ccd61619c8c9e14a3e98b86bbf', + 232824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0626f2d1d0508debf32c6d944a889b77a8230a2da26f070b8150d894899d4896', + 232792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28ea663c77e44b8efeb16bf8631730a3dd0ad747924d13851be2c52760ab6616', + 232844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '625af12ab366f909f5ba1c58a4f2bb93c4c404e3aef91428584d3914d05f8dab', + 233012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e44ea0b065ed64305a5878809dd21683d27a6a2cca1e7555b817820497ccbeab', + 232776, + ), + }, + 'NotoSerifDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c96c04e3063b5e87ff38220a4ae2195e780fb43f29ee51a957272de06671c44a', + 397740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f105634403ea7e206b553691b5e4529299e3e31d5026ba35b37b576d91a1185', + 398264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1211c8736a4660d91312f652fe34b9f6f9553082c1af6435c356fc6b7e3e752', + 398412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26289286b7175ec4a9ab4801295a8486478c1b32a09ffc25ea6b243230b56f44', + 397456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff0b0a8a284468cb2947c2392f83256650d7ace1ee04c52926f24899d259e90d', + 398416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a31d9681488755b8c97e78545aa7f8e944cb46e5b062eddccb68e6307aa54b0', + 398064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7abc60d0d491fc59444238e04c91b866643d799eaff4caed3eabb76f5b3a360', + 397628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd68229f173d7de6fc54a0861e13f6ecf317c02c7d032d44d21bae22d2769d61c', + 399136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f88a32bd7852b4c1056ff7c5bc33133ed9963197140e4a64ddc07cecb026d253', + 399260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e9536184e5e2dd19502365cb00c9e07f601915667bd5f5efa9ff7d3324923b2', + 415480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '77e871d2f19ad35967e565deac5211c67650fe8acf1d5f0b7b1fc0fc5a1b3e34', + 416068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e3df65fb274cdf829b0e57eca143d9b10e54b5379e2fd6307a0beda0937bf880', + 416100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '58b03b67aed09228b6d02625b5ed92474f520b31789d6263915a1438bf607f02', + 414800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '21504dfd174e596c19e126c99c90d00f26940eed53a402584386b0fc71553416', + 415708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a7c4902b7ba86a5463d98c14aec6ea1045567147850ceffbaa0b0a7a7e39479e', + 416000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e2278e3c5f0292d3d2c3728c2c3218f0dcf37cc015c7f524b2a4741b5438f07', + 415328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9e1740196eaecd738243148ecd2e30ab6e46dfe3b9ce29d9f0098eccc3a26c0f', + 416464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce174d5ac2d4df34763e97a2f4d8aa1cff7e9bb34edba434c15bdaf1411d0e8c', + 416276, + ), + }, + 'NotoSerifDivesAkuru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'feb306308eb551b1b42fb7011cfab89cef65c5d26e34eb3036c5d038adb4a064', + 277688, + ), + }, + 'NotoSerifDogra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21621d7cfcbdd3985551bd65f871249f69586f464ad214feb0872c6d09982381', + 56772, + ), + }, + 'NotoSerifEthiopic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92c5372ff4261fa7191242855a7152db8a7d588e2d3a40e4b9b44cafd052840b', + 302672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e26e381bb75f60978ee400ae0993ea382b0d5f505d2beca1b905de21972c1aa4', + 302840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab1ce030c1a46b045b31e604eac689910f459c7f1df159c294c98bea2929de2f', + 303084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96f683cd80cee448d252be99429ff7d668591d1ad3aac34de527ffadd0caf92d', + 303116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd6a42add7152e6a6b0107d3d98c5a44e5c3f0e62ca6eb53efb796f54f916fea9', + 303328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e66546b28e493783b01d6121c02bcd00a169601c3388223a056ed98d980b6c83', + 303468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ac30bbc9a3ebc24c91a66d6a5a8573e389d4c6bd1b17494d90744ce8d478953', + 303464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4673147a87058e91d24c50b7320c6dbf9918fbcd52d8580492008f5638a2fd5f', + 303532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1195dd26520e7f18ec85ac88808ba5b48338693bff9944290e77c0b268ac1875', + 303492, + ), + }, + 'NotoSerifGeorgian': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d2708528c0f5050991fe34846499a659d5e8140917925d156f3d1dee19f3bda', + 77296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34068b84af35bc40768b7c53ac4b02f45d39a451d37d5c2b16db4a51ff27ea1c', + 77336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e88c91e5fcaf4f75ff30ba2fdb2f1c35416a78047561e5e1cf409cb0e581a07', + 77268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bed879a0d70687aa07319e0bd999c214d168ce3e62b5a739b295df7943d5f583', + 77204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2afdc86044ac3906e611d0237759e9daa8855f3e3d5a93f35cd84556c01dbbd', + 77284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '412c3b604c1d6d4aac6d9b905fcc2b83de2fae4bf232f773eb5f66df6da997ca', + 77304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9458030548e5ec1db40a177bbd700f9cf308b6175fd694473188412ed351ac0', + 77196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb3f187dff8fe9413ac79523dc853aefee70f597ab356142e2e2264fef7a765e', + 77316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60adda0adfbc23938b9844589cd69a379fa1c7358f64904128cad16a3392a396', + 77296, + ), + }, + 'NotoSerifGrantha': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'daf6e8905bfe339779a5a5311bf603866bd5e29efbe9899cd0d093d0fa8c3fbe', + 306388, + ), + }, + 'NotoSerifGujarati': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cb71fb7779dad2352e30a3b875df6159cbaa7591f47834ae78779624af66f1e', + 140428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16f2e14535520e7b6562f28fb9b36379b7f98ff72c3c0adb255222094e5a5548', + 141012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be71732ea5c6183faed703b87a86772486c786cab0c887d255d93eb00b4c900d', + 140996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60106afb90cab88366f06f968835afeb1958e75a9868b2c13f3ff879cf24e5bd', + 140496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e86c8c4450c453186af7ccafa692a21a58f6844d127a18ead340767ddf686a42', + 140928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36fea1bd783acdfea61b2cf73406ab3e9896e1f337cbc119adf7b0a823a40e8b', + 140876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edc4506968de53ee217780da4183af8363972a02677204cd16c2b9f9344dc1ab', + 140420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cf8b4baea56f49ce548ebb9da2de2e2ccf24b0b183cf0228dd7401b688873dc', + 140884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e334f223f906a02cb07596233e3d3f833d51ee228ff3b247cc002cfe1ca4ba78', + 140676, + ), + }, + 'NotoSerifGurmukhi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89fa8fe8f09739d9eda9193c9f80a471bfdcc8e0abeb012813247ed4c2643f45', + 65940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a45043138c21d3f293fe0f8ab2225b6f279305c128af2d2e50c26669eb356fad', + 66156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6aa3697f3c2d59358a72e4e848d2e6983b07286758cde3dafb125d18708231cb', + 66140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1851bc420700d82fc7e2996a10b7eb1ac183224a01dfb97d69f90bbd12595b3c', + 66000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f9164d6cb6a6e5eba9daa6c52d622deedda6f742b9c5c9d693c9d8a02edff58', + 66076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb47856c4c4b9bfaccf16b760f37ba303bf4c899d35e6e8b393ee983dfae1323', + 66092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1e7e53d464a1ba8b5e474f75b7de27ea372401094139802a4c889476b2e50c7', + 65976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03882c357ee0d0a36450cbf0866ee91fd6dfa6287d063a1b7e89609157773362', + 66180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd44b413bd84b912e2fa444f02f2adedbfe951629cf7465b4ff71f2cb459de3e0', + 66060, + ), + }, + 'NotoSerifHK': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ca6f4ae414dd3af58b5758d83d696457497b8f3b5d4aa18fb8de47b47f2313a', + 9911304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a97a1316e79c0b7a120fec628668a071ffb7e9ee43542139cfeea8715840ce5c', + 9913592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ce87d964ce848372936fb671ea671d3b70ca05689defd148d95921af049e083', + 9915092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59e145346f770ee4e06e6c71efccb8515a75dda73dcd2f65ffd2ec36b1ec55db', + 9916252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '357b18aaa642497ad8f3480e9f5d8d3f45427e232cab303aadb294cb32d50270', + 9916892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b16e112ae951564561b63bcdc14c0b5607f805cc623f9cffe9401c96e097e4e', + 9917024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff7c46f1943087ddedb80fa3a14aa140f09b63a8cf6d5ebc7358f56f18f65814', + 9917568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a8ff511f260e2e227c781025dac9da1317ae8ae5d80a2d178c578ce089b8eb0', + 9918188, + ), + }, + 'NotoSerifHebrew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd53174aa0c8cd8df260a9004a3007e393160b062d50f775fecd519f057067cbd', + 54652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd31e71918ab5ff0f0e030903449509e146010510779991a47d4a063373f14a7c', + 54720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7017169ff82520c5bf669e4ab770ca0804795609313ce54c8a29b66df36cd20a', + 54804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '001e675f8528148912f3c8b4ce0f2e3d05c7d6ff0cbaa4c415df9301cfeec28e', + 54612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4927576763b95c2ed87e58dbef8ac565d8054f419a4641d2eb6bb59afd498e6c', + 54704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd86539b46574a35e1898c62c3e30ff092e1b6588a36660bcf1e91845be1e36a', + 54712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a7a8e251d660ade061e73a13b8b92d6eeb7adb01ed1117534fa6d89d44722be', + 54632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cdbfc88d81100057725ac72b7b26cc125b718916102f9771adeeb1b8ab890c36', + 54816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec3cf5173830f6e5485ef7f012b9b8dd0603116b32021d000269bf3dd1f18324', + 54744, + ), + }, + 'NotoSerifHentaigana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b1704ca5a7ba197e765ea94fb288f2569c127ef9b6d6e575ad4deef256be479', + 193520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e29048f49d54ed3cf5c92f387a567ec32ed73ae2f602e99a89a1ef67f85b7ae', + 193692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49b22d336b471a4a7aa1c84ac9a856e5b6dce52c7c243ed2cc08e3afecd82ea4', + 193696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a039001f1b84bff901ef28ce4c678a2053ea8ecf54c215c0e63ea098cf2ef789', + 193756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efbae68457a7fe72c7216d1d08aaa917c71a92233980dc0745fc4282215df842', + 193708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a772002123282434ec81e4f0454706bdeff3e2ea3e7b6e5921f9375a1c4a50af', + 193592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b9747b3b25119653b63dd68bd46642654f5f2baa231bc9566bac59e5658771c', + 193664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43b4350ed7cd5ce27497d4b70fe3cf28d8f328b2c64b72426bb1e189818a157d', + 193412, + ), + }, + 'NotoSerifJP': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd97ca6cca2d3c1102b98e11b1746ec08e2159dc9be56235f85ac9f8c7131597b', + 7476592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5b036f359986e3113d126c120186eed26a49fa160b3021cd884bf91ba114975', + 7477704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce6d282bac541ab33a10859fe2ca98e8c25fde8893325cbf5930db348a1895a0', + 7477688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69a9e3e69047fb269b4fca83e701d03ed36695b133785de8557a85e09586c3b9', + 7476656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dbd85f24b63306ed284e18eb7fed398a229616365f30853a7f0681c5f46d124', + 7475072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7562516b859119fcdb3565800a1774acec5ba8377af51a619dcb723b92d8b34', + 7472400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2628feb36649ff0ba9193f9245210038989df521ed102d8568a62920e3e9ac51', + 7471548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edb36318fd85adafc64467c7dbd23748b5efbc71e63eec8c50726a6a2f9965f3', + 7470352, + ), + }, + 'NotoSerifKR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e328e6e5780163add49cc0ac59e8b2c77e1c48e00333a766d0c1ce818cee547', + 14035360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f1d0122de331fc8d476c43e18f73a253f9ce9ef8990850c97de6ff0fa945b22', + 14043188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57ffb4da1ac373450070ff8dd3d52f9982c39aa6f840d44b0b05b6848222fe60', + 14045500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b4cf14c135486ec0a7ead837b94c2d3704630cdaff9ec5314974e932562aa09', + 14054656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40e194fc57eff2c4ed53784811669b3f85fd0da055fcb44073bc34d2f6e9e15e', + 14053904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18527e2958ad31deb66dd566de30a8e0aab35c4f7ebb6cad1d66e6d039b0dd87', + 14049136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd089e604a986b064797c3b0f12bf479d3e9dd19a4ff70f3e2f5f6b20cf2b1ca3', + 14045260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1580d5fe92b34cf86a5dc7417b3007fcd90c4f9d5bce9b738f78c49c60dde3b1', + 14041168, + ), + }, + 'NotoSerifKannada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '063503aa5a608639837eb3f5276d76d2a60823ca8d1d2a2c9e5d2d4ed679ecf1', + 171132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d35986c153dbf1b20923a4ba83e05cbedc5215ae31ac7cbd9ee9ca37831a3df', + 171516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29c30804bb04bf2e942f0ce7a2f45cc3a21afe46e5732d3e2eb7e0bb942bd712', + 171540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b371da167152ea3a923ce93cdcf4593f7366ebe32787f6d671813407429534f', + 171196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36ab62efd98dc218f7784062e50c126c7a8f5b84e7ef05dd2dcb8ca4925e844f', + 171672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '945c90609052d17ac6e74c10f1e25f1953c6d69eab1521780b17ee02e9de22c2', + 171548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6370893a0b6a8757a5a16a8b6e2762379901d804fddb68a45995ade20cc47150', + 171284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21d70c3873d14c0bf560a6f693008cd85bbff7a05538b6e1c52edf72f11cee26', + 171900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f25a890c31142516bf0dcf8da53149e25d41c5a0deca2506b1081222bb584f7f', + 171500, + ), + }, + 'NotoSerifKhitanSmallScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2aa739919c4f8f3d81e3dfa8e3c90f8e3b99901707106a2ac9776f6cc44b4c6f', + 643204, + ), + }, + 'NotoSerifKhmer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89991b0cb9b43468dfb637d27bf35421ded7996c61f7129579277e2299aea146', + 140264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '627d5faa40ef9cf555beb3259b2d3cf94c557b262a61253ae3b181047e1f66bd', + 140472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'addc27f3559a643e35c130678fe0f1de1ea4ec4f9bde457c30514edbca7a7624', + 140508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24da780b934730f0b2f4867c53ae503eb204ec499bf8066e4547c18b8899d507', + 140044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06bd786c112a889477b9bb4979348a9a974cff91940540f3672b0c380ed1b765', + 140268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8ae0efdba0daeb7e607d333a4755874f5541b8f1a8c29f136249220415865a2', + 140340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1eb391c3319c82a69d0695c3cafa23045fa1070fcb1bb00223018876799ef187', + 140216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db9594d1edc53fec268bea70498a172fef89721f14569041286559c55e4f0856', + 140380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8928166e83cc15e30ee48b4c593a15de990097782bef2a039003f0a43cd825db', + 140236, + ), + }, + 'NotoSerifKhojki': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '568705b2fb6119760447d22ab8d95d981b029c2624432c2d78caaf0dd4dd6ec1', + 139900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f657c62fcaf1a4060fa1a5adfafe419c6986b1f9c4fea47120dbea604c8d491', + 140444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afa3db96c58c078a8aaf07c3623ef8f9e86508db4a8913cb951df84ea12605f1', + 140456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0323c07fdb23656ed51b3307997ba0b760f00e41d50c543ca7a67e602092c53', + 140140, + ), + }, + 'NotoSerifLao': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47b8a8f473e5cdd368fba9bcb6001e52128dac8f774bdb421d5a0d6d3ad5e4fd', + 61944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f42f6f6406cdba9d4f4c73913c4c8dbc8d95b6d52331a5fc22ec4fbd1311f01', + 62088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '648dd15958ed4048d990157e0c6e4496b81842876fb14cc90cc5d5bf52e50fe7', + 62152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a866f9598d728d74ffd3af7c8161c26fadba16b859d8a5fceced8a922a294c37', + 61928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86ec60b8462e46eb460ed3900e73f088568bf1505f247f2de36c9c0c3bbd7196', + 62136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5420883338f863da2873e10262ed410f74b73787baa29489d887d8aa89f45263', + 62132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97066ce4b90ce0a4c83f7a21b7905486c5c500052e490aaa01a2e03cecb3067a', + 62084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb8791c538eed5d2241be091ae12fab5961bc051aa62bd5fb0d1b9197149bdc5', + 62236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d5b138f671eb0665c8471e94d73e335933f4e1ae0380a1a08a052ce30ced602', + 62148, + ), + }, + 'NotoSerifMakasar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4bef6fa2c52f5bbe78962332360c286b8620831fcadfc04864ffb87c244c91e6', + 38632, + ), + }, + 'NotoSerifMalayalam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a69020aef7b0fcfbd83d86ccf3fc65452143c15dcdebe493d4cd6f8ccd84d09', + 104340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c4046532bd71a67eb1abdce5445bd93104300ffe06ebdcb00eea24b20a8fcc7', + 104392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb7b766b39f07019577f423623be13818f68fbc839ed3283b397c6a76a076556', + 104368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e50cf9ddc884d7b90cd70f99607edb85359a621257c6e9e8c6a54da32666526', + 104300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed875c681220e1c9f3c48206058f97c4db256a1f04aa7c997039b03e4eaa3d3a', + 104408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ae80cfea44b6e19888406f9b78cd4933fba688261aa3539c273aad267b49418', + 104356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30ad5e87986c713864afbbfe48e2e4bda4c21d8572ff1e7dc66998dd85d7a815', + 104308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3cd72d0c526a84304b4f8235e7910663c4984585bdc137879018a39044db810d', + 104500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f718900dc46a4aa95469e14dc0946822a0088dae2dea500cbcb8a85a9c1643f4', + 104456, + ), + }, + 'NotoSerifMyanmar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1c0471f28dd85c3d04a03bd379ecc9768fd7aeaa5c98c873a16a012ca11bf7a', + 185376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5a7730415d86847d7b85aa23d0c1525a7e0e5958f1690eb5b27edb780183264', + 184740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cda176356528d006e08367bde77fb4e43b57d00af55a0df5086ee524096de043', + 192084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e02e37aab697b267e0d2a6ef9d9f160ed37daad434067661256f54213f9b8f0e', + 190408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2261a837156f986485667abd3606be308fdda58c39dc1564c599ad15dbc3e4f', + 183204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5ddea9ef8be1d45ce0de9b3d941298475ff964215830613d960de8dc19e9eb3', + 183308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7d7e14c2038575b541f21cc7b6f11c9dd055d30f327de2ea790de7cbdcf8a91', + 192236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '612216bfabb963c255de96b283cac31b06789acd6dc83197ac8195f7a2d5c2f3', + 184960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e42106fb11aaab15b2809594ea0679710c6214ca7d182ef2ad663cba7e4f7d96', + 185128, + ), + }, + 'NotoSerifNPHmong': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '373d26e61b48ac84abe220f72d0deca02018b51000635cca6b26dcbbe1b182c8', + 54680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21df1fb07ee456cf87ff4b58adb71181f5d950cd8d057ccfcd7975c47b73ba6d', + 54768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '201dc259b623a0a6c82856d6031841f5dc2b61a29af4cb85ea4244651d1d5225', + 54652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ee534b466cf8304b394dc04c4c65d7aa8b9cd7048072de63c65ab6c5ebd6ca9', + 54548, + ), + }, + 'NotoSerifOldUyghur': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '705a515ef74d1119c2ae5dedadca827b0f6bd6f12136c5196abfadf8da161fe8', + 52792, + ), + }, + 'NotoSerifOriya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a3964bbac003ba16835bf5e86b80891dc79944c239cb934b4b5d6d53fe0e8d6', + 146648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f170d6ca256ba04ab774d99e028f25b90f98aedae94192a544dd4f5e51eb1c27', + 146960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '922198b549aef723f4b43a10542aaf21f386b73ff52ea2f6b15cb20d0a763b34', + 146968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '427a61cde2232338f915c572efa40beb745ebb989a64656c4ec4aa6e06bf0b03', + 146412, + ), + }, + 'NotoSerifOttomanSiyaq': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5344aa82a28aed829cc879c518f6b5db136814db846c45067469a1dd61e1945', + 55152, + ), + }, + 'NotoSerifSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94232c039a2b517df5d78687686ed990f45ce920f47337d867c73b85f6d8895a', + 14777584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd7ff1ae035993d317caf7cec25db2ad600be9a858fe70420cc6fb0ff5e90d5a', + 14779360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fbd8ebc1678279307a49822f08015acb572dcdc282c38653a0449890f603db6', + 14780076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bdba81403b303a826b47161a3f41bcd92727870c8f18775172a27de9ebcc0e9', + 14780096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c13c6beb90cb3e117ec46a9122c7009a52f6525fcafba849cbd7f8674ed94f1', + 14779500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd2b48355f5b68180eb488cadebe00a2509f2f2fe02bb878d081b0f38a0f91ec', + 14778984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd97613b443d751943b82fe2c6e9a4a63c99225f5a9eab8f5a049aa49e1ab9a5a', + 14779756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '926cc59544c55545b241665fcf44acd143c3d0f62182fd79fcf54d4d234556d0', + 14780040, + ), + }, + 'NotoSerifSinhala': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be5e44a072c519e8443206a2c298085f8b20d5ab60d14897bd3c2b3734881375', + 242772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc5592eb725007fe637724f47efc47c2e335f90ed855b1c024715d514d7274e1', + 242876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77c7c371b1439ce776201e1abcd3eaedfef3bab77e1439e5821ce61d9b15ef82', + 242988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d1228f7cbc504e73926a1c6e70b225ad5f8f8b67ab0c7b80b32efccae4409d0', + 242724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0470c4c32f547edb71642db863f93c15f3fb8c4fe592c7af14a6905d6fea129b', + 242820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dddefb8385f6898058f064993d9c5203d0b3d7fb456170f33771af0ddc654f21', + 242828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07fe3ba9db64505083c33e0306208c7963ba07835993ded9eb357417bde5db0c', + 242796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e67f203a13031c3ca1c5fb53433d1b62c1784c56d081955a756fa248c4831c63', + 242840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6665980c2c8b900d12465f19f080c80d73d54474039f250c19f0c7c88d05fae1', + 242816, + ), + }, + 'NotoSerifTC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f725b22e18f1625ed64c066eb735a79e52a1981f51547991d697d741a1c9d63', + 9925172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f9e2d4e63a62e60216dfe418fa9f43fe399448e7e2c16250d1b6a95e0122c8d', + 9927644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9326e505995c10800705c98912e506056d80eaab3a60d78e71a12ba33ee91af', + 9929280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b1f35d5d108a6ed8e2c9e73d05569427c12d602f71402f72f9eea0a29951f34', + 9930824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85852ba9e8846c2bd3fa2a10abcf756f6f5370d2553d5af51e6d9607226603bd', + 9931520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03cdb03ed9541cc51f55d069e18305bf40685d5ebad62975b80284e1d111e51a', + 9932040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2647943cd733dba76e6f6ea0112e6d30973db4cce55e7f3ac6b999d87ff9913f', + 9932656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6f1fc8de3dc13cd0206ba34af9b68746898514ce7ae15d95485a3e65bf6b24b', + 9933384, + ), + }, + 'NotoSerifTamil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f08a3860499da6a867632702e9e5b0f10a306dba26494e834b2f4d4f2303518a', + 88616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbb6b0ad3493f769dba7a62932f879500a0dafec41965ae58682d21bb7bcc293', + 88804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b79947c0e62aef818cc44da14f387496f0c1b7076efa31627a054be881fb822a', + 88724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b87180ac757f46f9a604856b1cc846630a91752e7afe9bdce424c729bcda3a9', + 88548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '114fa62f6140a42b4ad4f4f311ad93f55607d020c28b28ef11eb22fc008559cc', + 88712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb9da966881447f563224e3eb67b5dc9c02e5cfe8f774f2c57ba097cad829b72', + 88668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e25c120eaf85cc2a004667bd452be95f82d8236b3b41d99000d44862117c5fbf', + 88524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6a63eaf364421bdfa7c641267e50f87e84e95ce08a7f774cb8ddda2df0773ec', + 88944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3712f809e28b10271564fbef2434d976fada86c130e208ebed8b75bc748ebaf', + 88896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '35072c3f8744e0133e3fae98f5843fc40d7617c9c026d0ca1fb5d99f37fac59b', + 88860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea3e14d3ff4f6bf5346bd018dcbd6fb135e5d0355b2ce19f45e538df8fd7d581', + 89068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0a639f9f86d0864bbe480bbafa609fe2d11c703bf8cf7ddfc4dd0cbeb00fbb0', + 88996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a7b979dff1ca6d3f165a115256f2b0d252e2ebd97c881d43854b0bf2b181b6b', + 88816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6c8861fad2d6bc7f75183dc85c1489a85faf923d7c82a5932069d4887dceecf0', + 89052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd8b5d5f2966dabd6d3973d2b06a7fccfbecf46c635d6a5b77ab518fe5e1c349c', + 88964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bd0a37e0515ab03a92f5dc189032bd3b8d604c97b7922bb27c76762f03217710', + 88796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f5df44bdfe2bc8adf4162dc6a115b12803c3bf45bc088d77610b863690db07ed', + 89228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '632fa0d83cbc4ebcdd609a56920d685effab13fb09026272d0cc051bbbb7c6c2', + 89204, + ), + }, + 'NotoSerifTangut': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a20bb03b9309c467ce0d8accd8e3b0888676fe3eab714c33e08c0c33886fd900', + 3098604, + ), + }, + 'NotoSerifTelugu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81aac58590c2b7a084dee3f366de1e94364492bb07fcdac63f51673fbb55f08f', + 240768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f5e21b64ba1cab4f86014ebf70b2b9e97f06bf161d59b3d56330c9e7c5f9c88', + 241784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76e573968346128db7addac8e8f954df324d6b22697e038fab8c9b63ee7ddca4', + 242092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f80275188068cd45cf1395dfa0e0e667b3a85c507c31460f340ccce8c3f6634', + 241876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34d3bd94537c9c3a0283586c936b846fb3457f3e56c96f62eb0a3e6cd582a25c', + 242188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '495c03e7945f07deba1c99f4fccbfc29c11b0e773bcdc30d791cd2904148bc4f', + 242308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc0f581ea82c93d5dd19fa7ad9073b72ea46a3ee72dfa95a97e70f63e9871f13', + 242136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e88d26c1d6bcf311638320dfd9073063e99bcc2abd2c5534ea548fdb50a4f608', + 242412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3054186771aa98136630573d3cc608c42e3298b8a9cf633ded1fbfd3501c8a10', + 242372, + ), + }, + 'NotoSerifThai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c87a5e0970da128db826300b71d58375029f234650fc1b6ba90f92866555158b', + 59812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dccb0daf4c742784a0c62a141efbbb30e7e38929c659771f4ae1d306d792a397', + 59968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2778f7156d098daae4e315ff4a0926403ab0143792768d4b0d371fac1202502', + 59908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ac215670f2719de202b566e4fc25a47a2e72c2cb9d2ab19e1aae3c01373ab79', + 59668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b3debd987dad83122a5de7225bb4deb7a40d5756490fdf108bb0f714822e5cf', + 59904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce3274af4ce0fbb97a2990f80a80e20422522b017cbaa5a4f38b58efab8406d1', + 59844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6eaa6ef001e29d274b45263c8abd277e56145f30f760e2691719d92e264b12e2', + 59760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84b163f4d1c705fad57cc404c6afc61a77a52b4f36eba7acaed229b0661ae7c4', + 60072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08f959a53c2929c0f18655c1d0089394615005be8c6b22c366d2a0450eb1fbf1', + 60004, + ), + }, + 'NotoSerifTibetan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af5f3878fe49da7455cfc49424508f05cf7c6eed3ef33d0e5ff710303813e08c', + 734832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3076300083ca2338a07c7ddb8d1a5b6b5898403f232805aca2a937c9725da3e0', + 736368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73ff869a77fbb56d0fa1f599fa2a51cac226973cae01fa3012e89bc5bc6ab778', + 736160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bc21e5ac1d7d01eeddf97d0877ded2a2f04c2b8bbc54c70f963922e8471a9c8', + 735232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b1a0032255f3a3047752e929f93ccd2bcbd7280e3f3f885be19d8b464fa6ace', + 737600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14ab23e7babc7ebc26b97b254f2aa86c20e141e2be0e080dd5dd97f5fc6a2758', + 738032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27a3841151c23df9efefa896b3211d96ad07f5f363ca95401982f492abfb0b8a', + 737824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36dc1387e2cd1d9d45f76d118c68ebd33551bc147c006c4ad17eae5b11876221', + 739352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7bcb0f6d6f317b8f8977aac408ef3ba6b60a963cf0a8400e69c8c3ca6307634', + 738928, + ), + }, + 'NotoSerifTodhri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08a6fa21a16ace51ebeb0c7047b7c211e08717df5f5206773f2f162e1ae63887', + 46156, + ), + }, + 'NotoSerifToto': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e285d7f2b4abde9104b98b15af6fd4f5b32523d5110265c5cad798276ef3c4c', + 41984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cda5b89f7001e6d2bb0c57b8785b13c77be10b575a4468b09ef3f9f0b8e69063', + 42100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '756ab56129c0edd0805cc8fd8ea98689646e7e0724be7044a5d9d7b4498dfb47', + 42016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df93ca095b4e7352879df3b726bd9adda7cde0ffff0fb31d51280076bb10a671', + 41928, + ), + }, + 'NotoSerifVithkuqi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e01f38df239299e5e43eb4c743c30d7fba3b408cb451177051100580ac8a6a1', + 53500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6493d196a03919baecaaca9862b158dbff6209c936f5809d68df43c8b285ae9d', + 53620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a8691cbe40166637b1925e2b838ddec1d55e5b0d960cd002bd1214dfc20f1c8', + 53552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f320b311ed8ebaa80764bd5b990a0ed9e8ee0d770cc788f7aba7912919a9a72b', + 53432, + ), + }, + 'NotoSerifYezidi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f11b90de7116202de40ae89f2d0be73025827130002cfb73fa38998a07c5d6b3', + 47716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55eab7712bc931b1e8b5a7f72dc0639aa8abbaa85926fa286dde48501fe1c365', + 47820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c597f70e90908b5452f5efe3b1d78dc41ae3acf8f6eedcebae8fbf333d7d2230', + 47744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd970e2d092d9df763746085c5672a97d7fcb0c5e0cc9b2fe5c4cfcafa980666c', + 47632, + ), + }, + 'NotoTraditionalNushu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67cad31118482a43cd19fcad025bb0c29a7e8ebf3e65a59a8d84a7356934ab4b', + 136668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbc575d0d79dd6b9b2c5da4fa58586f9d7e88a628aaf1df4a2bc88cbf7a74502', + 136620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8154ba41647b6c07824beb3ff51972bfa506bb400703101db91180ee75f9a7c5', + 136908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40dadd254939a2660a669fe1e1fee7f4561a5e1b39228c5d90b387691e4a410e', + 136948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '265373d6cfb8fc6e6ceb059d94b3e473d10ba93f0c3ab60f874fee61d8ae2660', + 136996, + ), + }, + 'NotoZnamennyMusicalNotation': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d0d8af6e9419a600d677bd4a1f4a3d418b781bca87d95dcf367ab2a42848673', + 78708, + ), + }, + 'NovaCut': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e99333dd0b8c4b24eed1fbfe7dc86c5ef34f2362a048af52c6ab139687d0e512', + 50548, + ), + }, + 'NovaFlat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d3577024cefe12c46756f0b6bf03ba668ba671045b7cd58902bfbda541b98aa', + 51672, + ), + }, + 'NovaMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cef6f9dace4114875a71406ef44b771ecc4407479c473af326d93764a6c55c3', + 152484, + ), + }, + 'NovaOval': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03f5b6ff0628168c6add41eff71cc5187350c116fcba399291907390cc150a27', + 54196, + ), + }, + 'NovaRound': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d83d808fc6521339fe1923f166d666b202f8ee17ae1caeacbe741193fc3c3b4', + 51408, + ), + }, + 'NovaScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c9a1d6330cb2731c2ef7879d1395953cfbbebaa7df8c28355d65713e5d2a375', + 64716, + ), + }, + 'NovaSlim': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24168e7866c69b4ec2384e4328f46586dbf07a365ed93d9e95ca1a3a696c5ae7', + 51448, + ), + }, + 'NovaSquare': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b13b4b4b397a598b606650b2bac246840ef1adf11cead697a55aad6fbea9745', + 46800, + ), + }, + 'Numans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf95bd951028515c03851610b0c718be4d679fc6e911a2089dc44b9524c1da60', + 35960, + ), + }, + 'Nunito': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a699f7f28981eea3c9beb5b01129f0d5a745c613376350ea01d599fc3aeab432', + 125388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '689cc9cc60675d7d9efa0b4fd7492045c8bac6bb73569a4dbbd5ef2ebabdc309', + 125540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33383e64e1f3603142b718d1854778a9c9c5e2744b5aafdac2b66fedde54a98d', + 125504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '578b7f3f76615d258788124d9299d5fcef1711101cee45c494cc985a9d736c4e', + 125628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da0d941aa9dda69a63c9d611ba4dbdb490ea43a61edc611f0e66cdbfc2ac0a18', + 125512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4ee3c72ba7b147e5386f71fe18f7c076016c947b8956a7affcd338101f9ddcd', + 125440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89122aad8fac58cb57e90b1560e0de7bcf458341752f4f1bf7e6c27578e22b1e', + 125392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d18d333bff5d00f5094d887290556281a163ca2375d920df2527c7dc2e00e3b', + 125352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a93b0ce427cccfced788a33baaf4735f2b7c06e5c59e492b5e11992d230b6618', + 128248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c80b0d0eb71e5d27ee7064f89d80f6d04b7efc5f7316e0df2e17f2a0f9295b97', + 128508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3ea474b0be3d68d751c274c95dbfe0d7215091f388aec3e41fea8ce02e64bcc7', + 128376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0460f98aa8ef237a182eaf4c88c5c6629d3bae448bf05ce5b6fbeafaa348ef71', + 128440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '72106e753bb7e88c2b99e5cff9bda977be76d25cf5395a1e61fd24b83f17f981', + 128304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '371e6cfbed5ed0e3f6b8bb8843de51378e72b8b7237c0e609282cde18dd509e4', + 128244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '628fd3502d5e333692382dc285269409031258b9798bc1bbf27c68af24cb0aae', + 128280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b54ad50ee4fa68d81fdff08d49852c0368df3cb79771ba25df5bc94f7d1d6143', + 128188, + ), + }, + 'NunitoSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dee80575cbacdc5fa7b55ba003191ffaeece2b98380e80ab1a7c97a31cf382b8', + 106560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4299b1a528b874855b8a132dd57d04f98adc3485aca8b18480ae21d10c759700', + 106696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4bc04cd12197d05341f8dd28cc501592524361e0a7a530cc37d3ab1c8c3ff32a', + 106676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2fd846fee17398424b4de2cbec353cb20e108f9ff4ff704e7a0f055a05b1764', + 106776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '264b300def522929fb7e37a90883094d6d33209fa5e4235181e606d21fa3e498', + 106808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99539d8e1cdcc3612da01775dd3f7ac75e0007e4f96d17dd7239a2be7e7545d5', + 106768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54412fbc14c01f0bc5fcc8b663d8f41f6a099791aef19f81a47771478356535c', + 106780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f14341040fb4c0fae1981e183405abf6adbcefca0b13748fd78765b315d7f734', + 106760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c22416e1a270ee38472243b08da4c9032e07a47162e9c6e164a550ed73e3c985', + 109444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '877ff671087b5c1c32df70afa0d0241bcd9720bf1c910bf20c59d9a299123638', + 109628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9bebe181ef5266dd54792aa1df654233311df4daa2418683e9a635826660608b', + 109492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd370d191d247b36a5129490ac736da375b2039d0b3692469709dd61b1601f77d', + 109568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4eda5e9920f2dc2fbcb59bd6b3edb6b23f28009e7afa785a05d90ee282f3cd24', + 109548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4777759471a70a13c1c44689eae45d4632c2534678e78f7b154102e91f395725', + 109488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7be42672cf25b8d017180fb11d45ea07bbb23556f5f6eacb9f10d78b8a064455', + 109596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aaa6cd527dd863313a713708689afb9dad1c02bd2e84cd6a1a93628bd2b295fc', + 109528, + ), + }, + 'NuosuSIL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd39083907e767636d1865fa86c51a5a1982eeba7c27ef175747c31a2df89aef', + 249960, + ), + }, + 'OdibeeSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd2a03d510e32d4e4b44e8d58985ed87f8bee0d1a4437f510ee65ed8091342b4', + 28468, + ), + }, + 'OdorMeanChey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24e9ac45641485845502b05b0c3c54d9fef6ba631d1984c30f0ed9f4513bb833', + 64152, + ), + }, + 'Offside': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c3d40f17578cd94d0aa123280933acb7bdb0d9beecc99cb0238d2f8808edcaa', + 42312, + ), + }, + 'Oi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1dbb4fdbdf512bd8d2c5d2463054b05774395872067b47ad74b53f29e5bd499', + 523812, + ), + }, + 'Ojuju': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbd39164a31a037ee9f0d03e3229fc659e92823956a915edd0f695bde00bc8e1', + 131956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4682550b9bbc5ef3fddb8f6148c1a26bc15cdb33fb4303662078edaac2668658', + 132096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87080f174c987b2a4b1942d280e8c8045239611f3eed06ef3eef92b746c6e0c8', + 132220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b75d82bdca6e0fe5a2ccbcc21ed9a2160c41bae6dc5e10a76b7ee3e4974b4382', + 132468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0c71f3394794ff8b3c37183b2d81be74664e8a1445c348287be7776d1a930f2', + 132472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6feadc4d5be56f9e8cdd604a3add431734d399537ceac4b0786104e14427a2b', + 132664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a08da186d4190a9039b28841df65f3de88e1faec8956dce3058711ae4f1735f3', + 132268, + ), + }, + 'OldStandardTT': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0201727d25a16274e9a9db669f54bffc1b4d1d3e978a073b2dd161cb50bf4e34', + 144196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '342348b635cb55e29abf8da14723dcc7431d8c88ff8808021519b07536087440', + 160252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63203c8a7d14ee495b38fdc3ad47af8ad65ad2e26ff6587933cd4420d3408905', + 143392, + ), + }, + 'Oldenburg': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b7e8d9e40a5c2d988b80dd02ebec67582a4064b92675e96c997c51ad42178d0', + 42380, + ), + }, + 'Ole': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '896ba4dca76eb29e1b70254dcfdd67e4471a2c321f69931b5cf85ae02a4251e3', + 104388, + ), + }, + 'OleoScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a434fcc581e309e84e55137767807a10769897ab7f894bdf05d3d3d9a4e63cd', + 32472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8dff29b0be363e1e66ecdfc36d998fcb23e292450e185c1ff8593438abf2f89b', + 32108, + ), + }, + 'OleoScriptSwashCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11216fff9e147189441db13c105090c8709b16ed26a61973a03edf1282c9a260', + 37500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '196c90a93fc2fe85f668e5ef553660a6876763e95297a16dd23b5064a17933ba', + 37232, + ), + }, + 'Onest': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7027a7c95663ac70bb2c729c905979d69e9dcee356c6b798473459a74fbf5f10', + 58876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff9ee25da53ab677976d9860debbc45569716d9f3ebd24ea95da3faf6ee18989', + 58940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01accb3567c17e4f32b61c450394fc07bcbec4b1bed8102aa07aed0adf91037f', + 58884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0c64f66e5ffc0ab6bf53d95dc0fba3bc1e1deff8c128ed9a797e26bd762a636', + 58772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcd96ec096ce18853c89c8acd3d74652c5e1f578b4da2f810905de07df1ec987', + 58960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a75d3c9b027bf5dcd0de8143ed649ae34a86b4c64f379cced4f649876578876', + 58972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '124cd776d17238a07bd82ea872f97dcd4d08d1514a13abaefecea5b0f637ea44', + 58916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61f954d99a493387ccee6c555391830cd9361dfee7a47bae946df04a029fa6ad', + 58908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a405cc877caf38b7fde8900cccdd9d672bd58a331964a75fd38689db0a34685', + 58704, + ), + }, + 'OoohBaby': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8ae600034afd0207126087f5c13114d49f0ce1d6b6ac91a1ea97168540256b6', + 88552, + ), + }, + 'OpenSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db991282bf04983238dd29fe2627500a4fe1f1c766ac851fef7b47dd32565ed5', + 98516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5af20f022c70222f0e960f45a033366eb2582c982031a715f9cafc05acbc51a5', + 98532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a420b44a9efa533fe670589230b4a68b40ff2c7a414f6c0323b160b5d29e264', + 98676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bf8d1e8b98d005159eb2c42793291812bebda2f0f17500290b100cb7810583fd', + 98456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae2c6e6eda23d9fe5515adb07f18c4ed45126beecdb20cdcc896db0bebf1f2ca', + 98548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62db469030f232b77f76b8049c98cbd54acddae5266f9b0388a9abad29ccdefe', + 98964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2cd37a51fe56e8bd89c049b3fee77e022a197bfe52d687e260fde4349176fa11', + 104072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a9046706805f9f807000103c93f91e22dd4a202d6e4da712d08cc864f2146acb', + 103772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '04fc3842a54c0eb78ffff06763ec9d75bd84adbf66361b6a7299aa0aa8685d65', + 103960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1136cacd81a487f74b811ef28a389492de73c7210e106baa734a7342edcecd8', + 103932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3562c747bdedb0eda32d84b5e3b89fe8112d60a4b3a96b1d1b096a237b30aa11', + 103524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0b3cc1e1e4a24a2b313dbfce685ed4c1168bde8c73cd0bff40d40bd3dd0b0425', + 104100, + ), + }, + 'Oranienbaum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0494740cf0b13044ce46bb0908fb0a8ddda89b3d381011bf2fe5766b2bc2ea51', + 54820, + ), + }, + 'Orbit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25045d62a4a6782039dfcb7493ebcfd4f4f84fa801598125440dbd774fed53f6', + 424200, + ), + }, + 'Orbitron': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b8d9d214c8af62dfd762ba96e392dc905866ff85cddf2ea3f287411cf35a49f', + 17728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fa5eee1cdc42bb8cb5c37ad4ed09de507308968d20a1ea1b2d6975bc4962a12', + 17776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dff73cb1fb9ffb31cfce7079952ed42952a438dcee9b71c62de5b8c3335710ff', + 17772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ada72f17e433fcf83998e706d06808a229c96bf936881f2be101a24ef9607ad2', + 17684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f779322510c7f401da4860b3a342c01fa16e11ad3905b545788a54569ac9b19', + 17744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d19e64e3e1fb03b640b3585e1cae52d52631e1cf61d524baf2967994300930a', + 16860, + ), + }, + 'Oregano': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '237b48a5205150503c26b448609b474bf912f5245cd7cf486e15d6744fb9ea04', + 77008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e04ae34d8b387a023056ba6d1dcc01dc2c6aecfd68e80cd9bf0a2348f35a4cbd', + 82860, + ), + }, + 'OrelegaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '847d2bbc05eae59d2c462cf77e64437fbd5217814c5e8357d9b91c7dc93d6120', + 83528, + ), + }, + 'Orienta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b5e0f19456f92c495773212590a3be056d2baa426cb697ea4f418848dc202ebe', + 35632, + ), + }, + 'OriginalSurfer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0155e525729bb3ce1ae1f6d0e2262e1e3fdd30b47b1cd8c255d903dbfdfeaad1', + 55208, + ), + }, + 'Oswald': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66b4741aa61c7666b31a8c01ca49400aa951b5c74c197bca23e5095d5c8d987e', + 86024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9be60eea6cd6fa8febaaea807f457cc14d3b0a1706dbf5830ab1471b6ecfa948', + 86288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7db4b9ec4ca16025a7c9285c80407f59d9b9316377dd90713741c4db69b729b6', + 86044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f41b09f816f2ef52e4140b54706ae3d9d4bf473e413146c0e7a57fe242c6152e', + 86404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8d9321c4c0df10e6905a8333354ae51b10115fe17b854c68beeb1f994983099', + 86420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0ec6d4383ba2ab8eb110748612f2964f22d1edac58b8c881e12e18a310549ce', + 86392, + ), + }, + 'Outfit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7968975ae24bca86d0ebba03d80d1ef478aec26faf682675c5f45670683df82', + 47520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e637bedb79866638f15630672ee888906e37fe739039f063946a0849031abf2', + 47872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '998bf6ee552524ec5e863bb9784219426dbb463a960944735050e0ed6cf974ce', + 47792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28fe0a241b5270b9a576ef60c21bec15aefd15ac11df0537e954ef6bd4aece9c', + 47820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '020dd19794fbcb05ec8e4ea2d2a35dd46e8073a1fbf7ed674aa8d32f3b063cf2', + 47776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9f897e407e3027fe1022db28d78d19851195331567fb477801cf3d12edc3e3af', + 48432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20bb459e188481fbcfa23f518d92efd946077016c47d8546e6fb6558ad6c2036', + 48316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd6bea2566ee900861e80f59f8ec10e26344bd7ce4e5d77f9afe27691550100e6', + 48248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65d21eaffe8b1b9eaf0f6ef9ea7182c75d482d71976779bb13ce94d4d054040a', + 48300, + ), + }, + 'OvertheRainbow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47d0d207fa65850d1c7fddcee1b4ca60b7b89fe243c3e2406c18152db7f192a1', + 43704, + ), + }, + 'Overlock': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d548e35f88ac197d59305e675bfef60d00c7f609344b0cebf999051db17d76a', + 44008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e33489bbcff6e2986233dd66d6edc73b19b51bb070abd16bdf826c3b94df25ad', + 37456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36dec46a588ac846fdd5fc2753dded61f26297799dc6dc1c495adcf6600b8d84', + 36948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd3a73a37dbce9ed7b2e4db57dba916bc851c360bb2775850242b48a032d4dcbf', + 39084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87d61ac5966d9c83d6a9875aa9ac682bc899743b4d46bfbbcdc14260f6955099', + 37672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bad5154d63cf61489b68d14096ed2e01c0272e0e41c53d85002df37cbedd23bc', + 37452, + ), + }, + 'OverlockSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aedda7344b0e018cc177a54bdb830216ab3157e0dce6c96a0a3fc949c4a930e5', + 34584, + ), + }, + 'Overpass': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06bdcd112715c4b92719168a59adefb67c1f1de121e4ab555117614c135e2cce', + 163556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '250e641538115a52072f94b3b285d74c99a6e86a7c54b8d3bc72b67dbbe060b5', + 164320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38f39946f81542fe58914c2ae6b08c1e97c59f3043a15de3eac1b6d0f411afce', + 164292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1564d9ecab54dcbd1f4b4df469f5ba280c9f24786e9933801a31de6cfe0b157', + 164112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02c9ef3247d682c64e1de069bf418a2d1149f77039349ac59d216e6841a002b4', + 164248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6fce3a3bb4e5bcfa71818fa6364f53c62c03f523444e2bb2bf69d61fc7e6ecc', + 163988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56d37a39a6bff85b873f10cf005f27268361bc98dab2c376cc63febaea85cced', + 164464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'febf4e94edb542391419f563f9388bc077921cb7f7f3b7340137f9eb3044bf59', + 163892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2750751e16bb979792f364321343ad05e82be6d4e91b6a8ca5962c702b871190', + 163876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '604bcaa1793897b09b0206308f9f8330c7a539f2cb741864362cf3aa19c58670', + 148028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a6755ec9f25d8f51f8baaf2d4860ae22a83da9a679e166d925a2b97a5cf30e0d', + 148148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eacd619af5a1189b362a5f49541f2df14ac7384b0a4cc23b6685f3678c9fc4e9', + 148064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1409efec1ea56acea51e2106a18f8d182d5fb68530b4cde2d12ac6175ad1d3db', + 147796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2dca34caef76e70694f4632d861b09400990ab58ae19459fe98aadd8314f5258', + 147976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6d38d9a9c9ac1ff0fb809224e3a5d57211c73c93f1d6f47590593ca742d3f5fd', + 148072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd878e6fcdef799d2b65f4996c35c317bcb3c70c090c511679678ed4a02541446', + 148084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47c4be66544580fa8edf6fd2ab176ff3976bc67b96f48d42468cded2360265d4', + 148692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b1f46c9494c1644edc44e667a651811de5e59d3ab31edb47704cc92838a11e1', + 148800, + ), + }, + 'OverpassMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ff7d9a9ad94ed16394abef5314358f2968f2ef27a9ff65c50cc6803641e5836', + 173604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '13bd2b37557eec4d15ab59a0e813e16ebf8a0b34dca2508175e8c207797d5ef2', + 174332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e22467c010d695448ace9963c3b32850576b97c1764515a354cf0514d14a9031', + 174332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63a72ad977000a2ac455670cee09bd702b3903156568982bcc62f1d2d1ff9205', + 174276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88eb913520fbba371e7ebe78b79509ced2c9beeec859170aa09ee5cd5d604abf', + 174260, + ), + }, + 'Ovo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75ad09d4ee5809346ffb97fe589e861291a49c61f2b5ced258ca60a9636cf3ff', + 46140, + ), + }, + 'Oxanium': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40e7f2bb98b9ad93ca059f873260b99b1acb2c8dd7a1e3083b6042e9f49f5458', + 24784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b12cf03b039d561aece5f9d0e0b8b1e53f505d6557d3d7c6251df22986569cf5', + 24716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e329146029f72205b10025c6b80627bdfb63fd9e2633de205c71103d46401897', + 24644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c7e57fe8569d29dc23bd579b55ff0a158e143668d322bcfce6cde6459c351444', + 24696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4938dc8102092d6c1083434d3b6af2d6b6e03aafacfc31728458b065a308e489', + 24692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd90284b5fad12ff29a355a5328c4f6df191fd6815c919d10ca0e6e7d84066fe', + 24604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db202e4cda52977b8a996477f6de16e75e671a349fbaaaa619d3188af86db671', + 24668, + ), + }, + 'Oxygen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b90770c0e205cef45e7e7d86a4aa6ec877b07167e4473b47e91e6344a6f0524f', + 25588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '723d5f8bc69e03228ce2bdb35215c93289440421b44cb8e20440d2b859045540', + 27320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e39f2550be17df555650e03fcf16efd4c0310aa7ed177e0839b4e6bc6bf6e3b', + 28184, + ), + }, + 'OxygenMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac90c4df99bc15f74876ec69f50382dc704fcef51ab85c458d43ad1736c7c060', + 26340, + ), + }, + 'PTMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02a5924a29c2e9b93e400b36f86aa232efd510ad921d86af053aa59f756fbce0', + 60512, + ), + }, + 'PTSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c714eabe5798901318eaea4224306de43298ae5418307353f889188207bc26a4', + 66228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2969f3a3b70273141c82ce30f261960ad2e2fb436fff6b16001191ad36191f43', + 69228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e29960a9325d4042d681ae15a5aba5b6871abefd76f5bf42c428270ba9088520', + 66516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5a46868e949726c4a21ab461dddd575c0df6590ac41c6421f3656d2cf88a37ef', + 67112, + ), + }, + 'PTSansCaption': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '130ffd62cde7dba62f9dbe12fbf067fbfdc6fddf257896f0cb161a0d7fa1d313', + 68020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea3d1fb9eff3878a6fd779fa9c7307a899e077faca691b72a7c4aa4a00b3d39e', + 68832, + ), + }, + 'PTSansNarrow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '552b97d55d9cdc87428c7293def48adeb1b90185d8c4e99c7bb6afc0bc34845f', + 65748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c6bb6ece90ad6898c11afd6eca7b6860a040c246833ba6679838d9354806eaf', + 63832, + ), + }, + 'PTSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0638ef6b9c547faff0b143e0668bc997224f5fc73e797f5055e39e29c6e2b004', + 78696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f7d2eca0c84d7fa8bdd081cde01acab643250de4f2b20bb00c4d58bf96bb6856', + 82648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94e0e54c632f18a0814cd6473701b683cff328324b9b9c4c95eac134cfdd8040', + 80936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7115b024296098d2e652eaea0836b0219c0992a7f32647087807d46107ac477a', + 84164, + ), + }, + 'PTSerifCaption': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbdee8724bc2bfd94ecfa87d0c6993b59fb855bdf0a9b53f06d0445eccaf2b61', + 69868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a2120a5938253a7e77c681a9e794c39d00fcdec187781b1cb7d5f0a30321608c', + 76632, + ), + }, + 'Pacifico': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bee281fb0df108aac201c1c277da345935bf7271e0cc42b99455890c936823e', + 170436, + ), + }, + 'Padauk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed2d20822f0888bc9301b63490f4f6661075068b0661d5d317ce0607e93bbd7a', + 161244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d350c5332808de2952b0324f9580df4b6930887921e206a169dfe8270f7b708', + 161664, + ), + }, + 'PadyakkeExpandedOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9af55152219cb5e60e9a3923208f771967dca65e44fe1f1d0eb9056d6129f64', + 263848, + ), + }, + 'Palanquin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '659a2da7bd683d477879bf0da09eece77dba5b9749509154215ae7622c429f41', + 266328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76aed475084712714f55afa7e17978e91f04e18b942f3f5dda453ca4e88078ba', + 267856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78b5859d3acbcdf037cf0f26540cdd3503ec3b5892dbb4a3d195b5755fa4352f', + 268072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fc400ffee3b8e06ffc17f4779e5607ab775824de32845f46c9799fc6b6f4800', + 276056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ba11f6006fffcada1f5d12b2d6ffdc7e2de6b2a10b3cc574de4029d5a6932b0', + 275212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcc77f028ce3a047bdd0fa0d280ff4a59165a67680ef9a40388ea4f1c1eaa781', + 275368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '025e6953f784139450a8ff520671162ad13f6fe0072a53676c034f55cef3b226', + 263920, + ), + }, + 'PalanquinDark': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06ae96d3b5baa08180fd6608dae60844766fb69ee250e39d34f3e0a368a0a8c2', + 258504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb8e4d8cbd9bbd7f45ef9382b32af4f401c0a62617ec29fb8c82a6adced16d79', + 265792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6d8f83cc36ba0f917765970c9c0cdad9b5d30011aff4b40541a44541b9957a7', + 267276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '567e96934c765e2a8efe1578631dd61246f6bf4b0d751fd3e21c8013979759f4', + 258052, + ), + }, + 'PaletteMosaic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6cf0ab4dbb321f7a6614aff29f7cda81877cf9feb94b9a69234176b2f8c1f63e', + 141936, + ), + }, + 'Pangolin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6fc65595735e68ceb5ccae54220c6cb14de1abfd8d49918d2c31dd8b03b13ef', + 235380, + ), + }, + 'Paprika': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cdc859602fb19edf32f73843607c44cdf3f883b594c9e8c08e10e32689b617ea', + 61548, + ), + }, + 'Parastoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cba424362a6e5e4da76fb0b1ba5e24f290b9deb1a7050058d3ea677e93385863', + 106972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd74c78868d621c265ec9368702f9d871885b81e58d422faaae5cb5a2247470d', + 107288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffce374611188c3a2a90acdb7e25a3f815e57534f10a54a6f28668e15dafcab4', + 107216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fe35475760d5f3f50b79a15f27348ea8e482e7a59e78409474902baec6e0186', + 106584, + ), + }, + 'Parisienne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac30611f9658f44a04fd278374bc7292e2f5e5f1ab2fa013600994e749eede40', + 57172, + ), + }, + 'Parkinsans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7337491122859f8e04a27aa74bd3692209c11edb415190bdf38724daa42f04a8', + 43844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c2de174b6dfb304ec8f50eeb695179490ce33842f209f73491fc1150dc4ae64', + 43776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c098078a06f51f6340a3de3ab2f3d673082d18943834aa18f1255056c4f2b344', + 43812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c8d1f0a7f04aab21be3629323ec04a8f44bb1e37cd64147a48a62ef85f6df48', + 43996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f52fe4138357e7a3c1e424fe7c45bdb213a7c176487a0d10de70aac2f359d671', + 43960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70bce0ce66e617dd4323d5df3c28504ea3c95e4e6eca8dcdcc3f2ab98dc6a38e', + 43984, + ), + }, + 'PasseroOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4fe71228388d12cd66ca85a1d816554a1f7c7d99c00f05e99aa67a86b91a2108', + 29796, + ), + }, + 'PassionOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2176b5df30b0255fac1746e9e21abba08fb801a0b2bdd29d857c7037f2b27e4', + 22532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e35b119f0f4a2bb20fa0710a2ecb30e164992269db29ef2d55365c09be5dc77', + 22332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c62a47c8617e4fc1760a66c4856467b46f132d1555817d3e94737af412a43425', + 21832, + ), + }, + 'PassionsConflict': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3da50f2077276ddb430d2d60e09d3dd5448e47b4590ea6e9160f8340f55780fc', + 97564, + ), + }, + 'PathwayExtreme': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96912989143b69e5080a817304e244cc413ae0489fcf285024bb701c5bc7ddce', + 71248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03c1e2e37191b43b863ae1035cb317cd03f1b81e6f86587e10a1b1119a87143b', + 71260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77a9d8cec9a54b6e09859d2a2a9ad9a8f1eacbafcd987b25905f13df01f8dde7', + 71260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4932509b5f4d7b53c623f5827ca363d4cb53bc740cc4d33070cf39cf6568d05', + 71252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39c997f8999582ec7c921f7056867f517a78a4c646639bb8c596035d245fa39a', + 71300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '197130e63fc717874a61b1036b05c83992a096629b2649d273ea2bb02a7a12a8', + 71308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8dab7ddec322b2fb47ca49ba961e64e7a576360b31ad90f307733f79a479aa9', + 71260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0e2a2a5d6414d43912c27b4d48ee6c0d0fa1df07268d81e323b606c16c860c0', + 71384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8802622b1f3e804394627e6931f264351b33d1ae40bac10ae2dc460c1c3059fe', + 70764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '203dca13a52cf2c5adff3888eb86d011ddc18430785756e81b9a7cc343ef42ec', + 54148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0905f4dc75083d660d258d4a946abac7b05b97e19b7f60bbdc2b1e5e2f2411db', + 54184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c7b57481023d23eec945966b44a68fb769221536c630d6082ad448203923e70', + 54152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ac2bff112833210f1d47e5e721b3be1d6de588cba40d787b1330787fcc2b011a', + 54048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c1cedf6e9d64d235092d3aa0ae5471d78ba686df231a4db7742892efd0429f8', + 54188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c1c954d15d919c7c8532bc35ad2f4cacade2d844270deea363672e7bf452912', + 54240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ff69a476818c6377e46cbdcceafc71f92ec5ef8f6255e919ac515d86742bf7f4', + 54164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '46955d7450ee80fe60857070e89a9c5227ff9d2302f4305b6f172aee14c95fd1', + 54356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0573aca103ed6cc5accfe7d7169aa22adf35137eac0129bb5b9ce2520638f39a', + 53760, + ), + }, + 'PathwayGothicOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'baabfaf530d983b373d8a738e84ca669ca1256b0c44a6ccaadb54d45e32251b3', + 32260, + ), + }, + 'PatrickHand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '309ba7d5200f03efa6c3d747d7ad47a5a354464ae0a6ffcb02c747286bc50964', + 81712, + ), + }, + 'PatrickHandSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3017032681334eb2567923be94945c423aa3a3f666a12b8fff2ebcfe56365a8a', + 80644, + ), + }, + 'Pattaya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01923c8b76276fa44609912b0aba62665cd0bfa0b62171329c6ac162e18dca99', + 204156, + ), + }, + 'PatuaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22dcea47f5aae25798deb8ab26ca2af353f88af63719b0b788fbc4d59767b1d0', + 33312, + ), + }, + 'Pavanam': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1721bec23badfcf8526cc5b2fe74fbff683ef8f2228e985302382beb422a53f6', + 46768, + ), + }, + 'PaytoneOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45e24958cce8aac961fed07633e51429bffdc071a54bd3c494539257bf3122ae', + 79148, + ), + }, + 'Peddana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61cbf23b0a1e9885b15880791511fea5e533ad069f3199d8890b21f390011609', + 439344, + ), + }, + 'Peralta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1c0f5580edc0cdaa240bf58a267658652ba893a955a438c17e452fa1db350552', + 56856, + ), + }, + 'PermanentMarker': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a96da3e1e3ae127eaecf81d137f7a017e14753955bf2449763b6b4118f98df12', + 72860, + ), + }, + 'Petemoss': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6b65b149f45c8ef86d51ba05ab2dad45c580a9ec9edba364c9fe60874dc37fd', + 86072, + ), + }, + 'PetitFormalScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0efc3d4163f42ed319e0ea770c0d6c006be374cc3c665057f6b96e5d1f345062', + 110204, + ), + }, + 'Petrona': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '543c33083152247faf0e8775c157ec23ac3962d7e42dfd5cdc6bdb5ec0b04ed1', + 70500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9449d6b40564c020327d59d72dd54bef0db5ded7872982a5c70197f5312ac8f', + 70960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fd3dbbdde07fd861674de2dea1084a2c43dc5e12e2864017abcd92a18a0968b', + 70888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '893b40227be3c91bcb79b4a06054508dd6cd451f5a83a4888d30d3c7313d4f74', + 70824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24c7d8a35e44ce7c55d92253ec79aef7f77d24a98d51ca7057f1d174efc4be29', + 70884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '734569d3fb4d906ce1b1ca0635104571ca078c37ad409f813e80161e36db9730', + 71244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54dfe5afe6a5aaae7409788d33ac23d08e225944caf199f1243ec15ed1d62c4d', + 71240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e838b73472b7cc040fa90062e16594e01499b203feb929ae5c59b1dc6426b5a3', + 71272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc6bc0f7bb55896c042e880b76d06378e8d149bb064588fdb70a9145b0f027c8', + 71132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b452e62628a470d7dd2e5d81c10287df2c2996577f3b5d7dde273d9397d635ad', + 74992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fb1be1a04cfa07997dd9c40a24b82c272cbe6e2f8a32e652b350e7e16507d405', + 75880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e7103640954918079b7a0d533b2dbb4d85116ed3b7d8f7385451792a959c19fc', + 75904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'acda44878099a25b654df2d2ab078d347214874df460af45d4291cec2787e987', + 75900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec395cf67328a947cb0dcbdb48f3a5a65e531decaec18af37eba883ef25554c7', + 75988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '200ad849de07954180e17bba303ec266ac776bf02c9475006cdc20b07345966b', + 76276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4255de23b3be238ce1e3601e145fbc771cb7958331b3044681026e9acba7a81f', + 76220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e581fbbe97058aa4e4a094a7bcdb4771525dbe8ea05ab974a29f06a8ff3b8fb4', + 76284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c633f33bf0dde7ae5e5a02bed39b85e5145edc2bff6f5092a5e23cd9643fc627', + 76100, + ), + }, + 'Phetsarath': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f9d8ffad78e90a2dc8e8e9057d0cd2a59e63939eecea586b84ca6d07ef193d9', + 29584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dae4dfa1042134857fac45019b28926119003d358e38c5f7b4905f23f53b4a08', + 28652, + ), + }, + 'Philosopher': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a728cdf93ac5e834c97256e292ddceafb0855f840506df26476c8a7936a583b', + 71632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '63ae23fa96aeb9264bae9c6f5119a025241b3ed9128ed07ae7db22a7f36d414a', + 79260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea9f950189c424a2f8be5ac27639286229dfbf4acbdcc482c626c83f0797abea', + 71472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '92ecf828c81ab017b82747ce21ee474859825b17de11ddcb221b11ef58bbc097', + 80064, + ), + }, + 'Phudu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1cbc0810e332a1e4a206516925db19b11f9602121a4744d9064c6e3f565459a', + 64348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bc6f2d14c53a131e85fbd140f9eaf370a848e43397daa0ab240230455577d84', + 64268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5503681a01295b91dc84aad884f0767c8041622c0926cad72472877214393a71', + 64316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8edb108623e78001f91d63eb90fc26c3ef483c7762829a42d45e9815fa6640f1', + 64304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfad6bde11abdde125bacfb3c102cff144927a2712183d24e67afe891f4aa7a6', + 63628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9be27834704d9fc795a4e0ec7b9a4f5c949641c8624440c7b59037e9a2d75838', + 64348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f29c99be19179d417121bbddc1a59a8bffebeee23ef77222ab078049231b946a', + 64344, + ), + }, + 'Piazzolla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8f966ce1c959b360ff3f21415eea7a4a6bc61c70f80e49eef16bb691389f22d', + 135808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '088867a75449edea8520b5ae1d7d74656931ce6bb250428ab87821782265163a', + 135884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '554cbdff28765cb8a327154fc151b24aa520642734a73812529e7e4f964cef26', + 135940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c15f4d5a357a4817a995b4d209b93f344be8840299938310625003f0de7c136', + 135956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f92320926ddea5deae487128bf966e28136ec21e50fef5edbcf92b073b57caf', + 136064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a4f53132a7d136f8e2aa1321bb88ee1410d8c695f440fe4d866afbd3bb28c78', + 136160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd81568b2b266f1c7c793a4e68d421876ef1c42739ef5375eed2e56ab479e68ef', + 137972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8300d02c12824e22998fd7c3badcb4de47413a7d5f91c064b086722e131df4b', + 138100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd301670a10eb22b9f479976b0dafd787bfc57b52394dc5e2a1b671001e28c96f', + 138188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c52398585aa30ffb13c523d7976b9ae9fe60c758679f536f3de9cf30c3ca226e', + 137060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bb35d9a126749fc8bf7dfce45aa5417549b54b9bd3a9b4fa5cb620c0a82071a6', + 137224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bf739a76acce110b2fab5abc1fb6800368ad5cf6026809ca9ab96ac9c6579742', + 137232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3951f3c8ff1503d410123dcc3d3b6ffdfc1f16e932fdfa74595d434b2787b7ab', + 137084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bcc4c157611f3462b9f5356a302967e106ed41de1e056369b3aac4f50fc511aa', + 137640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'de4b743f7fb31935b20dd7880b0e6dea34ec4b327ae73acb12562b0f20732045', + 137736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '01aecae9202359a0f7249f18e3d3aefc33e176207ddbc375a503ebb18452c2b7', + 139268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '016049da50262136a32a432fb073e68f1f5fb0d183ff5d31e6503729726bb502', + 139396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8cb6b1e3eed1af94466c23bf52d003e419c45fe14317451a92ef39b44fe9c0b5', + 139396, + ), + }, + 'Piedra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6723b2f515c20ab95775753ac7ac4643d0773f784c5b01b6f38c75e73ff15d8', + 73968, + ), + }, + 'PinyonScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11eeace1c1d7a6f01a1a73e91580a742ddfdc46e3f0edbda5dcf3613ac8dd5e5', + 108032, + ), + }, + 'PirataOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3b78a02a84a89389255d545696986a4add46285ae3f32d150234b1929a2c72e', + 53648, + ), + }, + 'PixelifySans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c67da31274fee92d7e2bdb65142815d6b0bbd4c64c208652ae7c2502aa93770d', + 49816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00a95176e4f983b9c84d4ab68cb09845b3d17d8167a315ff513519a8ca0c844b', + 49588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ca969d87be4981bea0c9db81fc7f33f3b740fab0d78fc0b5d8780141aec1a70', + 49620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e0ad95871821b3a85ba4dae37b973ea3f759fdab8e51bd113983b7b4ad5962e', + 49372, + ), + }, + 'Plaster': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcc4c3ef2e559eeaef5051dbf7b6bfab4312a95a455e1b3130e3a25c2e61b155', + 28132, + ), + }, + 'Platypi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5db68b2d3d825df679c926f70f9f234429df67ce3f787ca7356cc63857aa7ac6', + 101656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c754a31101517fe27928a505b4c65ba266125ec7df6ffd6f4b5eaff30d10851', + 101792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c761ef5be4637a23fc002ac6cc6e290b62f390018e20457f58fcb91d48b60808', + 101792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d6ed224367abc226725252d5ceca4baa5be95094ebe671d168b978edbbd60b4', + 101816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e28bac16ae0f9f679e6dd2b96ff68cf1321fac3b9e110cfe4179b1eaeef3dcb8', + 101868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd12692680ccd6a44fd72cbb065e1243ddefc1702ccd3ae0cf4dabe7c6823ad52', + 101780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '57d25567e281c1873d6cf28b342e46b167e5a9336da363e195fd8e637ecbf3cb', + 99264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5fec4264fb7ff33fe0d2cde7d2e09caff19f58769c8c371f2cdd9ce503aa2a76', + 99368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '801aa8ea498cbc65081a76abba210a430cf04bd6f00f2500897eb1ee0af2d016', + 99512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '120f1f427d40e02d78ce40d4fbf0dd350c93e1b717bb678d2ede548c4025b6fe', + 99568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '048d58e4d0e701378c7d03c6a3b2f6ed6e67602d1bfb8c30c166dd431134d586', + 99440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e4463312989c011568c8eacb71f68b4336f5ecd9d7814e84c5048f915951820f', + 99576, + ), + }, + 'Play': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9a162dff4d63f394589d709b0745f1a7eb1188f94c3e2c796d536c8fc8fbe80', + 84888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f0600f08d3c37eb544d892fee6a0aa902159f53776fd3f8b3202525fd427ea6', + 85872, + ), + }, + 'Playball': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a3299442a4f7cebfc56918238e3665610b3e12e603b3195569e286b4f87152e', + 142600, + ), + }, + 'Playfair': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcef22035e02eb05d1befbc1cdd76f78a7e121778b00dd6e772d7728914928fe', + 215968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f03babf04beacc38614d9a32ba8cc787e79eeef4301945494c8fd302fd82950', + 216136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e2414f69636c0907f4f10b6c8242c850397271490dbe9142421486ecc11b3c0', + 216048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66a769d0dd4d2cf4a0b8938984a9ae7577a0b5ce7d98e382909704edf1f630ec', + 216164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a6e34888f8aa879f5d410e07cfc79067cb21b0b03eb8991439640da81c6d5a3', + 215940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70fe45bc09830504e2695d416528836e0b9b511e1e3b69b470b888751fa512ce', + 216300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48453560c4a1ea7537da3e52ea75c5504efe93852309104011e0a8b3746fd917', + 216380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c6dcc0ff91f311cb82ca08cccc4c478f441d8f2cd51676f23d13e72dc25f05e8', + 229284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6c64d2a1190949d47ee1ea8f307d64894b12544c506ade72ab012cb846473331', + 229416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9ef0574dfe89508f10ff828a6085cc2f2728ce9c92b72d1c739467d5f730c562', + 229708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2bd15e072265bd51ee38ba4e465ce87bbb44479bf7476b438686ab771235d4b9', + 230052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'abeafe67837399ec0e0e5d758b2375ff04287a0b34192b7d84d478e1a84aafe8', + 231632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9c59b19092bd155641362f894a2897bd7929a2b187541e74b3d4cd3eaaf82bd9', + 231536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9614953c36067ab58e539bf477a4fa3231ed2a2334ef2e4d94d69e86f352e4c5', + 231792, + ), + }, + 'PlayfairDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '775cd3f92411b97cc374e0d8909c5caf3713508120866dc62b08f7a20213ba6d', + 123216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '102a056af74fd12dd9436188b5c3bf72aa6e7e1ae55223d4e6cd76652edff492', + 123584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d28ec9ef0160652a7f0c9a1be5a55361b9f5249e8da1ad0b81916dbf1fee7e5', + 123648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '529bffba18f383c1e3d0c1851b77b3bccfdd841ab051a5517543efca15b65038', + 123512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3deba1ed67c7bec5ee3e5700c2d6d83d9924a4f86bbaaa384cfeeffc1a78b10d', + 123584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3f0632fe42bdeeb4fec24a7f834ab4456190ed005811d20637fd94146557738', + 123508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef34ad679cbd7e276b4f9571d5e3137f01375933b014491057999ab8bfcfb098', + 110792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '91e3874ae9688ff249b7a421a4e4b1195045493e04b08e8689e7e921a80b98ca', + 111144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f69cc5c56ec3b71180884c7e773e10bece78999e5adb6342a0e545bc7bcf954a', + 111184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8f3e22cdbc44cf8bb17383f36cc23c73b70cb15e4c6d9a28f55ed4eaa77b294c', + 111104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aad0b6d9413555eef1df8d7257a88bbec727fc407cffacddc945e2a5f986a858', + 111092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad2fa5f23dc596322ff1fd50252c044c45a9f679ef81a8059b6c0767bd37248b', + 110732, + ), + }, + 'PlayfairDisplaySC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2e5de64c36474180fc68005480114a825daa3439b96a45e246237a7f2e02de1', + 94472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6f991f07f0780a5613b5588a0af6721cf42d1e30b5bfb37e0a8e0ad29c0a3aa4', + 91592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '660ed6e351c427201e5bf534911d9e6594c5957d94e684c409b9157eedb10451', + 97440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f7851b787cfc21e9281f1851d089fb08108e1040f6ad04b172f5372a0e0d2859', + 94548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2eeaf9dae89af23beb5311628d7a1a55ea0eb99836a35cf17ec871cfd79a505b', + 96208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '41c7ce200a39f9a58695666c9c74713fa7f2abe0891c64c62ab86421c86ed383', + 92856, + ), + }, + 'PlaypenSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf9a098d8e49b3af9982bb8314ab288fca528381dcfa8f8ae59b2b0a1bc854ed', + 702440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '310f0d62a99e0b740a9849a3e2b748756ac1d0dc01175c1431fd5e8237ee689f', + 704280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '894bcc12afef1053f6d66da11b0c250ecc4283113e283b7a6064b11824e63a5d', + 704704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3373dbaec1e5d7e6943bd2a1697180a8c0659acfc0f18e7a06e6a7d9386c013', + 704252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fc487d7f783e36f7af5502f0a3288ebf7d2a70d7c337e5f0db38ddd8f831f33', + 704916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '886ea9cce91c08d21e6ac219d7d46f1709f52fe23cc7bbcf73a2048bb4441f90', + 706120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3bbad295dfba8a3b5d2a1aec165199725b13eba1e3dcc7338e9bc2a4bc08d2a3', + 706024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abbf6644dc668e74ec4b5eec76e884c19d3a783e657a63b7b8710c5b683c57c4', + 704916, + ), + }, + 'PlaypenSansArabic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1603e0e5efc23de78d580a3d71da195b6a8987d7dfc3f661818a345d5fd5ce04', + 337052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0c63b77e27fcce42b9e2dbafc4a2b58bfaf38d020821779b14d0ea7f5a75abf', + 338144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa260c54c7ef421cdc8a50f7580562fcf9a97f92329a1368ee6c4d4b23f88aa6', + 338208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5acb51955b6893189c3f37977267b54ccf4595987e1787193ec607bc80572ca3', + 338044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81b38e57951d3575b1ca728a9d7ffda00f2f0bc9e989ecf30eb71aaa5e5656e0', + 338312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dae3e52f30f8ec2e67c8242125d3c0cbbed9b7c3de36b4bb053d7c5e066f25e6', + 338992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '09c3f5268983cb6396775bda2b780779dfddebf4fc7ecca5b5d73c91a363dac2', + 338912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a85131f175891f7eff055eaf981e5e031d108d8ef8f4ded61303261373b57b8c', + 338128, + ), + }, + 'PlaypenSansDeva': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '754c72aff55c6d4a19d9af6e348bf444f1863f0aaea5c26e544270ab41d8fa8a', + 689796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e4146a274c18dbb60020b7dad8f0e1cbecc30c5108a11b13875c4d9d465136d', + 693604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc921087d84e81a8f84f532cb4167332ef8d2c9e3b3fa1003f4cd86fbdf5b23e', + 695472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd663ba124516924dbfad74cd3ff5402ca43dcc6e97e8a27cc2186b95990edcd', + 696652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e05ee9b588517acf5b35a654c7c18a12729ae49bbb3efd2558351eb5ceea4cf8', + 697308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c69e002a9a9064df0692bdb09e2505ab28e631f42a239ecbb7d987caf05c3737', + 698520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f36364c468b9b797ffa8db097603f2e74933adc881f07d99bf0c7bb8ff3425a8', + 698284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96627e409518d0dd15d3fe6f48988cbe86b134bcad90bf4bc479e0ee4bbfca6d', + 696716, + ), + }, + 'PlaypenSansHebrew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12b5813bbd3bd556097fc1d70b7e24bf1860c641209c130af013592c100488d3', + 289252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83a5ab162720f9076e6cf8e8d40a13cfeca2e127022f9b20de4ab99824deba50', + 290080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1edf9124f46768212c23a673d2e3c43ff99275b10ce5bd95a534bbb59b3eb347', + 290244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43f0fdfc5acf08f68836f6fc2e9b412fdcb900314ef5395e110a7885b3570125', + 289980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91161a0e87861d96d425c34340f0dde412320a9dbe8881daf521105623c3a980', + 290348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c37f10fbb2ee4baba2a3485015b60effcbc0d1b2c101f8f91ff78211e3a6648', + 291096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21fcd6dbe447c16220af43f34bd517cb8047d21a5060ab69fd6a1f25d8415dc3', + 291160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c03b95aa10a79b98e0e186c66f2595766d3125ea36639e3bebc07af398fbd858', + 290712, + ), + }, + 'PlaypenSansThai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '31e5697339762b0c0b7b5c8e5849dd973a4fee884337703263c77c9f58e169d7', + 328712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48bdb8338bde1f83e3cec7627e43f5a198983fa49b08a46528e2aaa2e775a627', + 329416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '449d54d384a7ab4e28d02b78988f72d362c7015e295f17724bc9815c3cf81166', + 329528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f5763da21d0682d0b906d3d82e64f35d156ee7817f597751424c37ca06d4d96', + 329372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c5b9ea5aec147902bec085664fefefa3260293bc6227791b1374f6ae93ee75b', + 329580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '030f3bf0a191affd06681571de76425b607f844af195cd4170ca6e40510fddbb', + 330412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec4fa844813d076dfcfb043b3e6098abba347dda6f1808a2ea63630ce7f80b38', + 330384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a50214d5839fce087b31a3497ce5041e665870b7d51b95ad727a6b3865f8bcdd', + 329916, + ), + }, + 'PlaywriteAR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '625eda10d19a2fc55b2163405051c5f3f9e42e8f62ad8e11f50dfe24cabc9fbb', + 131028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd92bb9cf6e4629d8aa66699f15ad8ddb91027f97213391f92ea41d56af1a4a73', + 131292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cac8ddd8e83a827ec8b81b453dee33c2efd5732152dd756ff0dcf4803c20345', + 131324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65936a72f3f8fec849df1310ccb7ea1cc7ecfcf61e8e423812212548444fd5de', + 131124, + ), + }, + 'PlaywriteARGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ae3a880340e0b3a8ee3585334bd27e209363a225dc9e08c5ac5fc6b50f5ecad', + 224524, + ), + }, + 'PlaywriteAT': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a73dbf5b9a2252366621fbb1c92050eb666ba9ac22e5e83ac8e06217d6cd66d', + 114936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ccbc8e4ea027b7d2b072eab6ba212a7556975f1b0c5c460a89d12f139a0f743', + 115180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fd7877530ba5a5de36e02f9bbd416b160283565bdcf2c464098d992e383de35', + 115088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a524d49c4df1abd1f253a16de1465777b906a1c9e6f580fe93393542585bd85c', + 114880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '369b649136639e98e1d15bb030406750c8238857a942cdcf78a4194cbc0cba57', + 117088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1ff25e92d088e42cf26be272b4af3361dd08f86bc63f55bda0031723372de8e2', + 117084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '90170965a43e58f6299decf61f5d5c0e8f609ea9de129e64a4587f32858ba15b', + 116952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4590037b549e5a9e505c25b4f4c936a53ea3c8656570fa4f3cacc3d2bd4325ab', + 116672, + ), + }, + 'PlaywriteATGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ef5f198f8a4f5b8e88701e041b785d78d0312bea175ea8babc932305d80d0b1', + 207024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ac1ff98ef1d942c584b1a2358d102c7bf977a0fe0099a17028f2a290f8f872bd', + 210700, + ), + }, + 'PlaywriteAUNSW': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b3010cc6c7287f27e67538fa617d964da68b898f3a1f9ab857af2fc990206ca', + 87108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e26ec1543dd7b1f51a3341dae5d112f9db0a74a34de1bf6f8c9f1073c691a603', + 87204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9dffb43720bfe7030a7168d29f655669fa087a5e1ab49863dca0399bba38443', + 87084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '60899c4c4fad980810abf4080b6c4175e24e7d31705b51ff12164ff5b0552489', + 86920, + ), + }, + 'PlaywriteAUNSWGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5425dc50a7c5e13be8fea136fe7f0e0dc5422036fc9ca728f83c06384699ee31', + 183568, + ), + }, + 'PlaywriteAUQLD': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f758f627cc78072b28827fbe77599ea6e8f8930ca5ba7a29a305ab2ea57c95e8', + 94980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0d0803ffef50c01f12675d0525aa7b63ef1f800b4ee7051c335de65cd13beee', + 95084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb16b31775b896ea51bb9ba6d856adcbd55e56de9c5d56edb3e15648f81f563e', + 94992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c776fbf112f90a4458bb08110f4071b3a9cdf9867bbfe66b48d1a0aa2fb6de2', + 94812, + ), + }, + 'PlaywriteAUQLDGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcc55eb7c367db42ae5132144c92132f49b798be6451c8cdc2f7ea52c6032b74', + 190812, + ), + }, + 'PlaywriteAUSA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a34c79393e083690ea39566619fa896bd95b32de97bf2617fec26bef2262c6a8', + 86792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '490cfc4cd01fd975458bc8ae947af262db9f26f4999202a0ef00ac04932c640f', + 86844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '898209456f4289e195d7cce57bd94674b7bd7714a48b3afabe4c135b010a87f8', + 86736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a59d6d9ceb23835d5174f2926b5b0a714dd043c497f12f30c43fd3a97713c0e', + 86588, + ), + }, + 'PlaywriteAUSAGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63e6fa25049c39412d3dee17aece74033bb824dcb75303f342c0df7201316218', + 183852, + ), + }, + 'PlaywriteAUTAS': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fab8511c359214d66fd3294204a061f37a98b2b60af1c54e2910c16e20d77c9a', + 87052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '253009c5a3a1246412a82c42fe760629aed2aa7df2ff20f8f4bc566cd4c53648', + 87220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd76c50772d9505d293614832c4afc393ddedb9cb5dbc73f78f29168583a4519a', + 87132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'acbb2fce5387c4ed96033f65a69fac8ef66c7978f2671379a3e2fad2d9f05667', + 86976, + ), + }, + 'PlaywriteAUTASGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8136fffe5de0c8ed174bf982bd724a72ff7c2d01b5bab6977304a41a6bfe23a2', + 184336, + ), + }, + 'PlaywriteAUVIC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b72eacd10e6add7c7347d9d5068321affec31cab3e6bcf28024bdefd59c1f658', + 101192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '992546f02f367750fcfecbe4cbd24f00bd145985adfc878a6d69d5247ae317ff', + 101380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7d7e526f6972ada22acafabfe39fc2edc4649ab97976c6527af90396a2a2b30', + 101300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38d5cee13478dd0533a552556cc971adc090341ffbb74711dcfcb5a0b98ca059', + 101100, + ), + }, + 'PlaywriteAUVICGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9277ea815c50f3d1b101a80bf4077c01feeb9509d138d16c8702b1d691d0be9c', + 197116, + ), + }, + 'PlaywriteBEVLG': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '902a93aaad857c413b090b4e3671a62ddeac4fea9cb7a5da0b03130c1ea66426', + 126492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2986f0aa85792fc3039857a1ceadc320a8f8d76dcdf1607c5cfa111181244318', + 126592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dda29f7e0f5ddec5e073cc434a14ff59cc779e02011296938288294f71c57c4', + 126452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0dad9c9dd6711312a330426f232929d8fc2c0fde8c2ea4f2820f71c53de8c5e0', + 126160, + ), + }, + 'PlaywriteBEVLGGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc0c289ef2b1d46ade40118d7832d4e0c9a264ad92981fc5178dbde069d66025', + 220468, + ), + }, + 'PlaywriteBEWAL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5a6530751e7ba3f4dc792376f89ac0471e8c4b854a830744daa3678c306cb2f', + 128536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1eafea0b5bd2a60cbe9f8a8779907541281628baa08c47eea5d79812bfcffc4', + 128756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16bbd968b9ba16c8a18212a3ad3ed76f82ab2b5b4340326eb75173d5d5c08972', + 128808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35d506691ee1f97f284213b3466ee5a48f6f4533a804ba2fd87d5830ad64ea2d', + 128632, + ), + }, + 'PlaywriteBEWALGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3936d2f48069bdce257d92864061de5762fec5de5baa5cbdc90930ae0a3e50d', + 222060, + ), + }, + 'PlaywriteBR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '274c236c91a0a281e7763329cf3b5d09222ddcfe8ef40c1a5313333bf78b7b08', + 130408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cc340ce2730f1bb63677802b61dcb8c47e8ea80ae6c6c1818991e7725946fad', + 130636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50ee4148f422d9f1a1cdaaa125b0868ab5f21e264acb526f14e7e40c3b7252ad', + 130740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3743e28e837d1cce928176906b547cac6d316c0eb0f955c5b7b5ffad74beb35', + 130468, + ), + }, + 'PlaywriteBRGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a7464b8fa9f3589846c6fab271ee2969e148a8e9c6094526ec23bbc28c2665f', + 223880, + ), + }, + 'PlaywriteCA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7394de190ad4e9ffc87c6f5a02de2eccd1ad74992713fa9d869b5cca82a01ecc', + 131596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30219d7b954bb324b8897dd2dd023f85a86b3d6bc44ee4ec53ed04ace82df8aa', + 131700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c5bd39f6a49beb0513fa3b5b0f7c6d696d12e45ea82063d667a0541f8a6251f', + 131688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b6831047cedd26ba707a812491dc42c349661cb06ede838b397d9a7f60bb15d', + 131432, + ), + }, + 'PlaywriteCAGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '822e3ddaeacfbc04b997a093d17e59e70ed7d66314f860804141aeb6fb069649', + 225956, + ), + }, + 'PlaywriteCL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75a73d47cf3a14f99b17878b822b17537bdc61c72037e8fb7b80bd86496f2b7d', + 129968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6e25b560b1ee580c3024d30ae4ba6c318b0cb149277ff89e1229e2fe14622a6', + 130220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e5bffacddc58b6a8b053224d3d0c023fb43d66cc09709eb77f955e0a82d1380', + 130308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7a15ac21d465a7b1843645d3989ded50779d5dfbaff27f278ae43d406d8718a', + 130052, + ), + }, + 'PlaywriteCLGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb2ba470ca8a1ab02ee3ba68388944e30be77d4b1d9861e20e5c1c736c3b6484', + 222820, + ), + }, + 'PlaywriteCO': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14af40c67ed21768a2ddb9404155b6ca2702e645c93aa8a8c653b07b7e4e56e1', + 130664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca9a40a99ac8d03e2dbc130cba80a18d254f4d64053a4847c22581e29953354d', + 130696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c47130648149a8936d4bb29028b550df97280a50cbaa05cb3c8c31317ad1ffa7', + 130560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2ad4e72bc785e1d40a18fb6cc645a6b9e46c8c62cd0316e31b6aa9cb3365310', + 130276, + ), + }, + 'PlaywriteCOGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85cbe132b5e5a0ae39f4eecf849f2807d89eecc174f14a84cfc48ef0e114cc61', + 224904, + ), + }, + 'PlaywriteCU': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '496a6b1c5543ace235f1a6cc2ec83912ee54112b28dcd6ae46f356d94011bdfa', + 131756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3eba6f9fce5d8b900d49c85851a339a9fcb496d8b69a912c307942a368cb37ef', + 131848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e63c341da6cf9a069a195d372395cf2d9bfdb6599aa3d84e85d14d74ff87d43', + 131688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4c5a006b0d267c88833f179db1b09e948c2c8fd038fe497d2bf3697faaa64f0', + 131440, + ), + }, + 'PlaywriteCUGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a29af3682906f73bea3e08b2b44cc40c7203a10f2a011b6dcafacde160e73988', + 227312, + ), + }, + 'PlaywriteCZ': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1b49a5f8f8c605d5da2e2d2184bab3592481cf4a98e3cc94ee7cf8bc0a2456e', + 128632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4049efadc2a5215b6e1a9875b78b680b2e91053e91da6aaf2316c1c573b0a09e', + 128740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d0aff77bb77d7e5e42a99f97675e325bf7cd8de5d8a70d17c9e7a70f94b7816', + 128608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92ee2048a86a0f4709676d420af021f944b1f911c2c87ac7ab7bfe8d7fd5a56f', + 128372, + ), + }, + 'PlaywriteCZGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75306d59e22a7480fa15e0cedb82b4c52556ebbd611783d503812aaa096e3e42', + 222976, + ), + }, + 'PlaywriteDEGrund': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c30132bfffa081c5cc58f3680b195e774a78c02e2e9c2964c32643fa4db930a9', + 57088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2c4d2b061ee3a04ad3e8fd20fcb4ae52f0914a5f69a256db19bf4d68afb3e69', + 57204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2555069974bcf14c2ca121964f0a3ab70de63a65bb001ee76a122ec676c65899', + 57124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e475da53f8b3f6cf3672826765ff071cda310b21fe115697fca6f273b661be8b', + 57080, + ), + }, + 'PlaywriteDEGrundGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '303183b3e11dc3e4312cb918f4def7b11b2c4c5857e4fa7e1cb91680d8db32fa', + 137528, + ), + }, + 'PlaywriteDELA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce1f920669a89ae493a13fbf95da2610ff1ca27e95795631414b8502bd93b320', + 125948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5624548c6130c017915c07f2c04ae5ef29b99433bcab7b346f30033fee20b6f6', + 126040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edd4a6fbb678219b9767acabf75aaf41946a18dac6d9387f2d23b1dc11d6a5b7', + 125992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19577ef5d3197730c6d2eb8cc5ebcfa26fc482bd25530aa4deabafdbf55456fc', + 125784, + ), + }, + 'PlaywriteDELAGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0be1f7325e378223698235d7170b31dcf35d2d48924da6497990640d53bd677', + 220216, + ), + }, + 'PlaywriteDESAS': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28e110160e2d775ce134d758fd273a257b11fb040536884c3538a5f09f620cd2', + 119024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8457cba941aa78f619c3c2febb402b777d3ebf89c6b886af5c0e901801652aab', + 119080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbea7150a53ca0f85c1fa0f485d0ef79276c4130c6f2be377d19f295ebd24410', + 119012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f8f7cd458e3fd72a460a4d69b73d47f54e32d431da6ab626a4d5b97b5505e03', + 118844, + ), + }, + 'PlaywriteDESASGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '34c95df3f77675297a4de767a78f401872da84fb72d04f2580959445cbbd9d58', + 213524, + ), + }, + 'PlaywriteDEVA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75ce10754ca9c4d88f90d241a59c6c5ab1faec45cd7e61bfd37136080d3b8526', + 111660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd88012c50fa29a2a53e32086b85964d910d12449ff6f6ebf96671aaf9890d60f', + 111724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a5ca6d0ebc311ea66963dcb57f340f8b087706301e9ec6324867effb5b88304', + 111592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9f17a21fa54b6c13d278b66545c45cb7c9a8eb8eb68eae27adc834cd1dd196e', + 111408, + ), + }, + 'PlaywriteDEVAGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '32bacb91e5d62c306cca8b45fb916f857cada263a1595881e3a3bcd99d5340f6', + 208692, + ), + }, + 'PlaywriteDKLoopet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a933407ea05d8c47b489535ad347742a02671a9c2f6e0de14d0f0f2a511ad2c7', + 100192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef8ffbed53b6a5a274fa99f8ed112d56ae6a2152edf12664cb237b9ac10aba16', + 100260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce5f9b0f0360a6a9a20a48d05c65f6442e6e1769a4a8e99da43327237826a739', + 100128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '491427f450a2773eda1c8d9b2047b60f9c341302603a44af86bb4df891f6337e', + 99824, + ), + }, + 'PlaywriteDKLoopetGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b744d7c0013e53f09f3d1c8b1d0144dbb784e9d26763868540feb89e5e50461c', + 195632, + ), + }, + 'PlaywriteDKUloopet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9422b00b2a96135b0eee5c6c31c31daff73ac1f2948637c16e2c21dca2fbebe', + 92380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bde58bd0f968e3ba17112bc452b392e6230416fe1605dd7482c7f15af6679101', + 92444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3446a27b8a71a299e35590ce5f4c21eb04758229ebb38607af618e1750e5729e', + 92316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e70d81d3d685a3c15d31b3843051aee068d72aa1c68c6d8d50a495bdd0603131', + 92008, + ), + }, + 'PlaywriteDKUloopetGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1ab2d54787df89e8a6bd9c4bc28cad13dbf22118a00b0df3b3af5fdd5434a094', + 188896, + ), + }, + 'PlaywriteES': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a9ab3ca002f436a034f1ee9460b6b81d71688bc0621813fc3bed439e52d88ef', + 106168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5168f90cc14ebfdf5d5c4c576df91b2ec840d51cffb8eeaa466f4fa6144e9bc8', + 106388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a636fc62a5063cfe25779a9acf001c10bb897d2e831d5cece5a902c66d1eca4', + 106424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '653b9ea078c2aaa82187b717aa564e9fbebfb243b798843cbbabecde9e3e2a03', + 106248, + ), + }, + 'PlaywriteESDeco': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64996580b3b80772c1dc41ed690070f03fee5c402775a5aaa9fc6abe9b84bb9f', + 128036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c04e0db23486b33a6ad588aef8dc345e731961ff49f8328a5cbaf46df6c0078', + 128272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbf549dd782049b546c474e52d596e34bbd959ad42a5847861963221b058b3e0', + 128324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccb2337fe6e86a46c0e8a214a0c748ac3f629568efc4512e31198fd735a6ebdc', + 128112, + ), + }, + 'PlaywriteESDecoGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39517f38229164de24ab1471ae703ac5dcb87b4fe4196ae49815a95b7ef1e964', + 221792, + ), + }, + 'PlaywriteESGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '072dffaa904a5c0c093bde9fb4c3e46f9d9ad587387a62c6262e9c2d055f19ae', + 199732, + ), + }, + 'PlaywriteFRModerne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c278493a3387130bccfbe10269e0572ec9749ea8702b8595c362ec1fa797e5a', + 84724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8fb636279a672841b144bcfba28e9a1c5d7ce0da5a08e2947a7c79395152e80a', + 84852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '450d25f7a7362334e74ab66887483ca4ae87f47b852b7c44e9e753d354781c10', + 84796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4757836adf11f27b68647b33303bc15d00c594739f7041cf4feeedba177482a7', + 84608, + ), + }, + 'PlaywriteFRModerneGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd65df261c8d398962a59ff6c2af61e63918b16ce591d0d05ab8b02363ed0f534', + 180108, + ), + }, + 'PlaywriteFRTrad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2e785a2bf981b225854cd0286fdbe191b8ca4a38c714a52867a1c89e175ebc1', + 130440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1120f8bdff8e02cdb3be0970b9b0008991178b35839261db01377f1ce60756d4', + 130616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b48c35b069d84624dfc80c37a368d6673e9ee041605329e94a789279149555a', + 130680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50e31171a3819bf505b0286a335b49f29aa34d2175610d39611b35511b635f0c', + 130476, + ), + }, + 'PlaywriteFRTradGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3be1ddac2c71d146bda1a1bc203dc2878a2b1873b676b69023fc05a8874f9ec2', + 223984, + ), + }, + 'PlaywriteGBJ': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be87d4c2f61676ba43c08de0c4b4b45496a036e9dc73f2ff89170e1e233db4a5', + 93144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc78b3f4d1ab89407387d80f2feb13de2badff59d1fff26141e0be48795fc0de', + 93368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aeb5eab936f0c36dff7be3507dacb9bbb94a74093f8c0ac37b313cf65e7a630f', + 93356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52e21af958a0c1d1ce33901563b82a904d4d4ce0ab6bb7116bb21c31c99498b4', + 93124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '90bc8e5b91257a669bcc99e856f360abafe4acc5936e2452959a40424128a797', + 94724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4e066383ee65d7c4091f4d1877d68259163f9c121e90b248f40b6dbac308c36e', + 94876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '852d6ecf1e8a6a4d64f90e3ec37e461cfbce09613d52e56986c8e94f724ea0f7', + 94784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4daa41ade50c7f13b53d230ac8635e5aea9ad5a4f5eee577cdff1587865473be', + 94568, + ), + }, + 'PlaywriteGBJGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80d6da313b5576d670dc0cc222d2dbfe6592734912357cc14cee3ff589baf23e', + 188200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d3d9f26215cb47330cec8c196701ec7d9ff95d393541ceb795e76341e4ae444', + 191676, + ), + }, + 'PlaywriteGBS': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d49d49fb5ef61ede7cbb11fa21f1832a62c62d76908fa03d965883713c2419b', + 85304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd16bd4dfd3a6c52a9cda94090d0dd8f13e48da89e1bb0125a1d176dc20ed562', + 85528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e25b3dbc35833c464bf08a6403798fda614f2627ee6f27afc5e59b85dbd9d9f', + 85416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69dbaa4fe60ec6a833a601c6565856af72e2fb64a0259d79a77416fa8b013098', + 85244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f4c82c89fea54037ece4e6f19f0e907487830c1e5eed9de73c19bea61239b1a', + 86752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'baca3916146c9bc1c41874cafeff3f2728fc7aa32621207491fd2ca4fbf6730b', + 86972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce0b2ec11f0d1fbc1fafcbfcdbfb5f0b5a4b15c4e7a62c926fd3505756e5d0c8', + 86884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e743c8d70cbfebc192bc04faa3a17ba4573783d8a9ad3abb94d566d80084bacd', + 86632, + ), + }, + 'PlaywriteGBSGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c69a508d7d8a76279fb7275245b563312c1c7173852537b05be5abf3b0cff96', + 180420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f0b744d143c2c1b220116c6731f2e202f68d977d38e9102509c32851457c5186', + 183904, + ), + }, + 'PlaywriteHR': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06c08b8962986f69110759bd357cf81a2d3f55c2bbce8f15b001d7977fbd6c47', + 121952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8596a0d9653f34b1a5bbb88be61112e6a0adce7151540dd2f11ce057fe9d11aa', + 122008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '228e3fd463262a8ba3425c7e88b281cb5a7e45b2ad9c2bba46d0bc776f5267e7', + 121880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '965d3a115ef28515b7439d4c8e6d8f74e95109a4aa81b9080a2057aea2dfd68a', + 121568, + ), + }, + 'PlaywriteHRGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de18581e5206dd61b1d869a3cf3b3630a3e5ddf88c58fd27d81b78e21eac0bec', + 218692, + ), + }, + 'PlaywriteHRLijeva': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d31226cf116abf8b707fb080277e7172f29754e1bbeb310bd9f5d41e8f6dc2a', + 119752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21524ecc9cdd432d7067b74b46a4081d3974fff83d6f5b6e05db2cf15888c60e', + 120028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db08ed132a06aac7fdc2941a15784a5f1b4066154dc4b5bddf81eb80d71102ee', + 119976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '01449cd5bd7024b01d2460e10c9bcdaed027788311a42404fe662a9fb44ee4cd', + 119724, + ), + }, + 'PlaywriteHRLijevaGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d85eb74904b04207bf29595e7a7fe9a50d4c973c888a6fcf6b82fc2c69bb934', + 214856, + ), + }, + 'PlaywriteHU': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29c8dd90904c22e5e784ab7ef78bcd0da0b06108c02628f1334ba8a325637b6a', + 119916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70b19eb3a5b08c048cb8e75998014413a0aa60eca41c2d8d2b257ba30f3d2c35', + 120148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f91fa3c8fe54468796f9e7470e5c2438c5d0adf6c5f3eb560134b94ea825853', + 120088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '028ac6d3a615a181cd463bcd71c49fa8b3901c1fcf411260547e4a91086cc388', + 119916, + ), + }, + 'PlaywriteHUGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b09ad5455f5f39a2ade38fd4828e5bccb611db4353d1588a21eb87e81e95b663', + 213324, + ), + }, + 'PlaywriteID': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afd6d8bca061e08692849c7d4853bf6469ecf6504c1ee102d4b92cc2efb9329a', + 126920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbccbb3e9f677bc91ba2d15d6411e0fe20b2ce08850c10ff46e849a5421adff6', + 127136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37985fdae655106fbf11fd3bf371f50b467d98dba179a988a757b506e7994d5e', + 127220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e2bf18df9eb987fe8a34007343d732d6bb64e492a046f139e88209ae8d6a2800', + 127040, + ), + }, + 'PlaywriteIDGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5374842f82496243aef2f4be78c536a98ae5a8ae4735604bb0e35af7bdf81016', + 221160, + ), + }, + 'PlaywriteIE': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1ccbb0360d9876acffd7e764e7f3489343669c202196656b3ad09e4e5d5773c', + 123044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6082064d56c90bee1996de743bb6acb5f1c501fd896277099fd0517c3da6f599', + 123152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '047e65ffb5898aab6ea70d83aea5bd8a065afb5c8fba7b5ac3e53e1a157e787a', + 122888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4dc13616461bfddc0c6b6cb120aaf71efa812878d8cda648f6f6c6facb5db4db', + 122684, + ), + }, + 'PlaywriteIEGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1eccb52f58b8cd58e1b78e6edc303bf20b2093ac9c4e84705c45631136af0b3', + 219552, + ), + }, + 'PlaywriteIN': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16def864f9d3817eeffc71aee574cb6d3f024db9895c043e424eba5bb212c681', + 132048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1b805e37f9aeec96e6d6f5b44c025eb2491f585e02fb603c06bb66518fc1c1b', + 132236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b4786843d5700813c95cece646d2e34cee39de35fca40eebf247427bdfbc442', + 132108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '603160793b034161ffc112c8f1f63a18b466121cdbbbc5c29d8e307c66771c1f', + 131940, + ), + }, + 'PlaywriteINGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0b7efab8c8e43a09b8b7e014cf9d8915c1f0f8bb5f8dd46c944beac33c38b24', + 227164, + ), + }, + 'PlaywriteIS': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4fe5312173a738fc634dcce26ee43858905d94c075f2133c95be31fef7f551f', + 88004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0c3cf2cdfc688c7ba4f810342c62f64748a0dcf4cf372d88fcd5caa6f17dd022', + 88196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1df1bf79846f4dca7a7d8c034f05f0aab668fa54ef01e0edc0de71ba946e12a', + 87988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '780cf13115710e4c6d14e459e9811d95a01e9dca3bb32ce1ff404b1427274bb7', + 87852, + ), + }, + 'PlaywriteISGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39bacdf4049933ca6b66959ef5fbadaa293ff8fb3244dc90d952d5a94e192447', + 184152, + ), + }, + 'PlaywriteITModerna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95fac06604cf36b2c30b02f42880870b83c6c42b8c0e37ed2e6249a22c708340', + 92584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6348cc529a43bb54964c692ec78d5a0b0c1579921db6e3cc53f3e701d2b13bb2', + 92800, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5f557cc228eca40aacaf82a2368869405091282d5f8f803ade75bad1c541a53', + 92788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '266488db1b17a8c08f4619f93eba3355ca31bafe206c2e6f988eb8ac146cc92b', + 92572, + ), + }, + 'PlaywriteITModernaGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f216dd17662f61decfbbda1027736716684444a1f4877fcf6bbc9e4608b4a898', + 188892, + ), + }, + 'PlaywriteITTrad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '812a1961bcb3ffefac3468240e1cbc310e26dd816609baa116649c217c3e0f23', + 125484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efce0ac841a3ca29aba3b0a8ca5b62e739199a1954b6823db9da448c3c305f40', + 125684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f12adef1fa846f8b7bc699e053f161307b0e296200e9301f7907411191c8f202', + 125608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46b1b8e3671f79a7028ffec23a630ed32c1860320debda6cac5748b6250bd90f', + 125460, + ), + }, + 'PlaywriteITTradGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0eb1d52a493cac75b74cd07cfeff7e69cf09f6b579b37005df1a4e4dbd0b6ca9', + 217932, + ), + }, + 'PlaywriteMX': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff47ecd1b3dee5fb140b4fd64621ceb95dfb44b7715d023cc14ade37f2b3290d', + 131720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'acede31b953e03ceb68c20853f3ae734a77e21a6718c8af5110dd23a82a9e047', + 131764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '315766fefca0c1e2b6e969f5fcde0665f8a4687e06da91eac59fc24d10b1f9ac', + 131624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcc25470a7304fb0f6ef97097114e758e2d49a762b2fe1ce966b6a56b392e8f8', + 131344, + ), + }, + 'PlaywriteMXGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9aa9fa96ed1000cfcffb299875caa7bfbba3302784ba7fb5e83356fc114a21a', + 227044, + ), + }, + 'PlaywriteNGModern': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f6db1c9078807f43c2e8dc63e2a678cecc71f162ff6dab78bab2224ce3d82c7', + 85232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad318322d9687ca63c93953543764e1803278f59d261c7a0c56789a83146edf4', + 85408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5819cf5b8c15f008fe0db3f4984c81ab632b3b3911303feb24cc6858b38d1c3b', + 85384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9733ce5e1e9d2270b1663af57018957d7f7855a2c5548c03ddfc96cfc6811ec', + 85260, + ), + }, + 'PlaywriteNGModernGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3ad4bf63a1f3239d70e7d93eb130f8484bb32b7954bcbb552961410f1af05c4', + 180612, + ), + }, + 'PlaywriteNL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca0bb9c30df19eea60f3500355dd254ac05eef5aa2ecf368235ecfb1df70703b', + 127808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c9df803779613547788fe091479dfcc26de657001fdbb2b7caf6b9c1ea8122f0', + 127840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc67a8b7ab81a942c19287f44aece7edbacd017a445cb8ae72fd0c64f31dbef2', + 127760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f49ceaccc3eee72413663e5fd2c863ce464c065591c423519049c36f59fd97ca', + 127540, + ), + }, + 'PlaywriteNLGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7215190ac0c8c5325240381fbf5c781cebb22a8df737317c4f420154336400d2', + 222508, + ), + }, + 'PlaywriteNO': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d86a4fbcff9fcab718eecc5c9dd6a347e2f35772e6776798dba7ceb0f47fd22', + 106844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42db2e6d9e7f3d7139f37ac91f95d8c8e143640b3114a27f90ed9b65b1546c52', + 106960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46e5bd3f08d4c26779d9e21d0aac323c2f8377c7a1a4626b63b6b08cbf4544bf', + 106780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2700da370e98a314337d9d6ac35c09ce8b424578df378a15f11c21399298ad19', + 106576, + ), + }, + 'PlaywriteNOGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb19f6b4e37a92f24f3561d63c5a8ed1d0fb2349da75281e6473ca58adcc248f', + 202448, + ), + }, + 'PlaywriteNZ': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12b889eee10a905b902cd8286a7990c6ea7ac1a3351f64867322ea6aa3fd9c56', + 87260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90fa83f73039a5bedca2b367f8857a4f8d5ff55d6404c4642c9a55491cce2269', + 87416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de911f53fd492802b8e1d9a83bc1ed7bddaa46d56e031731eec7dc85e69a4459', + 87360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d5d24541268eb985ae9c15de9f0d260e223079042ff2d391df2a3e454acdb92', + 87112, + ), + }, + 'PlaywriteNZGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0b19c82ecec3e10afb20fd79030e7bd30a18b60c2bf083599dd3ec9504facc6', + 184396, + ), + }, + 'PlaywritePE': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3566bdf72232375d898d0fcef20234e1030f3b43d4434f92b1bb2ccc0b792753', + 130128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61641660a0f5b1080577eb3ff67f96bdac2c2636c5f9d006ffcaa19bf425a4dc', + 130252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8538cfd2ed7a0c86627884f2eca45254a90c3893ead57c7852f1d844665cba98', + 130228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd25894c5a8db9c7e46ef432b82a8a701269309828ff26e1473f79b2acd271191', + 129992, + ), + }, + 'PlaywritePEGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd22aa7a400b89433233ac8e8611985b8c77a3337fe52a9fbeda75909791ec989', + 224092, + ), + }, + 'PlaywritePL': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41bc768c67e270bb1d33275b026bd0745b20a7b5d5d27b1303c441e41eee6791', + 115460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29c02911b5c034e6df4aae69362cb7191eb1dc71bc1af53aaacdbf6126291669', + 115688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5adefc7fbec3e9ddfcac106fef494f0949a2be17a13b1109fe43847ba3a805c8', + 115680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d62007915f5e2d9cabdb9382932e59754b6b4d6c47e09a31ad9c510c6932203', + 115456, + ), + }, + 'PlaywritePLGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b103e063042da6eb9f4648360b9dbc28be6cb07db4267f0065e87bde02e8fa0', + 208116, + ), + }, + 'PlaywritePT': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '873443bae82441830d8765711abb8c7ce3ffd86b3a7b7ee0d06f5d03949ac83c', + 128664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21eae4d32c5dc3fdbf48de923012ab0808c8bc6f6077f187f0c60283060f50e7', + 128896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '196c50ab5b625f98c48b7eba6d7b77323688bd2b878f8f6929997153c683814d', + 128932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4a417016e96e2427163f9b1c3bd3fef78035e5c6f89f56e5826983be2af7fae', + 128740, + ), + }, + 'PlaywritePTGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb3ebfed4c2c47d284fc0e41a739397e31511abc6ce41e71218e9a13db6a5592', + 222520, + ), + }, + 'PlaywriteRO': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f1ac4d09082f6532ea596f463929c4ddaa400050a29a14a27debe71ee673c41', + 129620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12afa89c7073bc2a6d968d69654f7b11c19524bb6f5314408aa688885461a73b', + 129716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd3e4da2ef4fe9ac5b2ac1f6d479141d3e8211f05a90a0652d9edafdc62b09a78', + 129528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38e4e6af7555a480a965a89de8c1d097a1f285e90243af5d4b34fcf0fb2a6ea2', + 129204, + ), + }, + 'PlaywriteROGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '302bef51b4fd6d058aca360af1182e2510f617e79a91b908c9f35df4753ccdce', + 224012, + ), + }, + 'PlaywriteSK': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e674643d1b38f99e7fa19ae6db725fc6eff312794ea4a4079fcdd7b76df62677', + 128632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9454fbccbde107a6f5893d4012d4dc0120d54cf52b73dab207a4825d5bd8f8b3', + 128740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '025477729ea565e5642922fae126b74e51515092a2bed1a3a086bcd37daa2cb5', + 128608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38e869093bfc515d7f5594bd9998c67f5309a1e6f063518a8b24e7ab12a09f42', + 128372, + ), + }, + 'PlaywriteSKGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6339aea28104f54062ade2b628892db1a07752619e72a2d4d528eee3deb9936', + 222976, + ), + }, + 'PlaywriteTZ': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '370de49adac585a38ba4b68e422e1fcd0cecf02f21e60e98910b3313a36ab276', + 127636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '04138cc053a5abf7bcee4a58fcbaad0e48fe200dfdb35540761664f1ebe9e97a', + 127760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c486035351604105160a3e82d7d5e960f2ca23bf7b496aa54a439a33c78ceddb', + 127600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e4765d37a299faffea27974cbf2e7ebb79bf7b9b156ac8fb03c70b6b50841be', + 127432, + ), + }, + 'PlaywriteTZGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ebf96ffe1d966669f96fa040376b537f7f4fbcd1a1af98154ef822cb5b6534e7', + 222440, + ), + }, + 'PlaywriteUSModern': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54ae6d2a0ff797cbf1e73bd31f644de1351ffe30a70f49316604715894e873d9', + 90176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f36e3c642f6b359841691052bda014e9a88ed9a43516d10e93fbf17f67e9b502', + 90360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a33251811c0cf0c768e4031fa97775359ca7073d93fa14768b58f9c0aa014ef', + 90352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0c0bab8066b023b50d2ba7fe7761a2154f08dac1d16df23d0e97bb3e423c9ef', + 90236, + ), + }, + 'PlaywriteUSModernGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '205cf08f55379645ebb2f0e4024f95384afcfd7528acba5424f62506631b65f9', + 185916, + ), + }, + 'PlaywriteUSTrad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e9dea8a2d0bb5d77a94da7772182e9a0000fe643672efe08201812ffb870b2b', + 130060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3604cca1a6541da1aa1dc7b81219cbf260d14bbd935c003c66653599b5a7702b', + 130224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16d041eab76e24de0a03375d4657319f0b87dbb0ca04739931400ce2bcfb736d', + 130160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '499b1d5f63152ee75f9055e80faa2612161e2a7d43261971b0eab188fcf9010f', + 129872, + ), + }, + 'PlaywriteUSTradGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3403634490605bdec2ce83f6a5e87a7f4d87f98bae991ffd9a6261bb59e29658', + 224216, + ), + }, + 'PlaywriteVN': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f68ae3ef15c6cff0f258f24bdee80a9b4518b4d56460393734dcb85c7aa534a', + 127856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '933857bf769a43a18a40843a64ef3ecb0cd44da6f4e2446210da8b01d6e0ee8e', + 128024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd326a50ab9131e1327aa014b967fd0cb976c7f554b67649b7649fffac4fb1284', + 128036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90b8b6b0dcf7bb756979c8bd6f25f0b96bf7d96d36eb1e1e846eb0ac50472d01', + 127800, + ), + }, + 'PlaywriteVNGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '00741fe5179fc8bf9e5b10899ca6eb2bebabe2701a47d81a8b596014de1e7894', + 222200, + ), + }, + 'PlaywriteZA': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fb4df179fc301091f83a70ad1f7b3b87583aa9877c8d37ef57cb350334e1252', + 122876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29acaf278bcad0cc15f11677ff2ddb93420152790e21c768abd004e5cad028ef', + 122992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e23b8086a48967a7257d0331a572514ba01935f4efe7a971accfe596d96ee41', + 122876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7fa83b59286b7fa7abb57aae05ee3372af1ca9e1dc091f5d6102ebb88cff9ad2', + 122728, + ), + }, + 'PlaywriteZAGuides': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '592b30cc1896faf22d5dd5765fe54a4960408f3cda5569c02648893feeaa035e', + 217468, + ), + }, + 'PlusJakartaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '236b94978716a5b9532c5ab11f7d69ba195e1cacf00146a91ab46c507b7148a3', + 63372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98eea411373148b109f3cb8c85cbd9294707f2b56ace31774050d3353789f20c', + 63348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1306435ed883e4a1e6dad370e6d035955da71f4df9c07ca192833f7cb58a18d7', + 63312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4478b49f18c5b0db7bd8fbbb033595061dea8c03a86246710035d750e515130', + 63380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8590ab94f96850ab246d5795a9ba442e42f64036673bc329573dfe93efbc7c87', + 63388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b6d946cf820c9851ff7b4776425ee43f5cf405c6f891a4a7fcb4a74d5e32d52', + 63312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9ab901a45e6afa0c663def7606b753bbdfb60fc73bf3277e8110c167ddb6bbc3', + 63348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '67b0a9a73692842dfe2b3afc51e19b05929acd2d25761d1068d18c642f2d4666', + 65100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f52b200f4061ce556c9519366bb05d2b52e62861b23069a5a7d003a285749663', + 65060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '14903fca938022aedf08d6a058799acce99a141639bbdd956bfe370f65d27846', + 64824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '45812f4eb5d8828cc7d8e9c65c1b955bbb5f6e750f7fc9f2acbaea3e1b12a89d', + 65048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f55a6642a9bc37b2ab89232acb67a7d592321cc91c06fde02969b1eaf4cefafd', + 65044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b99e8615e6827a31612beeb8a14a7abbead8fabe6254d993898d0e9c05c2aea7', + 64912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a87b91600420655aab081027f098d0d873c7a82fbe154d2591fc437457b21701', + 64988, + ), + }, + 'Pochaevsk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e2aa683b658e2dfbfe1f002663f9adf6a44d962b660f927e865ea7f23833f6d', + 117188, + ), + }, + 'Podkova': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e68bf8a4f37dca1a8a038b87ceaceacf212975824646ab862e2a1bfe68af977', + 96732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9101650bf1afa796b25e3f1fa16b83ec1b4ee3e44209a24a2368c131bb695c7b', + 96880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd820e77744c307eb136d691d10300ffa8ec0f7e709ebefc94c9deecb8c6f53b6', + 96856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29bc728f68a0690f726528c184284dbff1309d883cae2f9f0bc867d3add6401d', + 97256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dfd8be64cd367c3597bcbe8ffa98f308bae4e2ba49998d9f79edc2001b8110fa', + 97512, + ), + }, + 'PoetsenOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '597d44dfb3a81f513c1f2edbe5de791a7b8e5b846c017b9417c1808c8cbc0426', + 112560, + ), + }, + 'PoiretOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd166323a7982e59e87b13e56fce19f413e0a9860f6c35dd2a4b82f4ad4527b6', + 44704, + ), + }, + 'PollerOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e90d5df6dff8ec8036a26de903aeb4bcebe690c4d3006a1252496b3b8c59732e', + 28172, + ), + }, + 'PoltawskiNowy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd691d97cee858d9c0f240eb0906b482821cf65375d8a6b573b96c4b0f3b7a02', + 162696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '552779ba45164cd692fa5dd924ee0b61f46b544546e28af736f12a8b53d05488', + 163468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a6cb1940dc02b1e6895711aaeb825c724bdb73abed5ec4fc8427bd1e3284d5e', + 163528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf49136923b1015a077cc1597cbf5227e5157ecf047591de39871dd59f48df78', + 161604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cd8322b2484be5f5cc36e801d6e3a9d16ae267ea65e1f5df48d96c175e40de4b', + 165672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6e96d72cd90f1a78f16a13891f790b94ec2d5b256483caf69e298b54d9fbf9ff', + 166856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c32b0cc2f236da919c498d5f9869a8ff3f2281ca38eb11c25222a58f52f27c5', + 166948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c5b978ba4cc25a23ebbbd5ba2f45e4b980772d73fdbcd766fec3ab9c245496f4', + 165320, + ), + }, + 'Poly': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35e7dc055929f521a2ee63fc8aaff0d8db3f273c223d5a3c97203bc78c8b57a8', + 51008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '13bfe558d1648e490c48a75346d326e984500eab8007f0cb761b1cec2bb114be', + 65812, + ), + }, + 'Pompiere': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f7b0762d12111e41f701e0ea622ea5c6a84829ad72075c63bcf00f4e5f666aa', + 33356, + ), + }, + 'Ponnala': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3254557faf01d7b6b2a1b97a48df9ab4943756e18add661cb1188519efd14849', + 237452, + ), + }, + 'Ponomar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c15d62b747c0414c875f2850c9d4d972fdb66bc5662fc71f0a9df417e2232e7b', + 219256, + ), + }, + 'PontanoSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d4483f6c5302f9e0691b77c6a49f0a9dd985ab17c95b33cb93195aa3b0eb2c3', + 40996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba9b25e0ecc2799bbb1e7add66ae829f18222feb38b3fdec29a9f502c9fa61ed', + 40832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '100890ccfca657b6860311832c7783ac2e959f2dd00f670cc34bdc8ea8a24272', + 41652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '59fa0a12ea8084ff31171bb54043d5158d94b56980aed85ace4f7409d760b7d7', + 41572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d94c49009b420e6be9a7ca0fa20c526117181817e7b89d67f76bd4ef1211fc7', + 41652, + ), + }, + 'PoorStory': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4dac2b9dc14e6e8150f5569c9e7fae7de22943fdca46179dda69211ff30470d7', + 1802964, + ), + }, + 'Poppins': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62fbc976e89f481e5cfbdd8c5ba3fb2d54d34f321d26e09d0aee1e92322f4c03', + 157916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2f3c36836267be3cd724b1fdac2eea7c01592c2b710db1e870496228d513d997', + 183088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e69d1e6141575a4e9376c58d0c7df89225d9d824b31f2190da9737b6dfb004c', + 157716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a72b549384105f91114dd04de46734ceba741969117aeee0a91540f215ba1abc', + 182224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2cc8d8186b7df39bad617387a8c35ac03820abc2646973434ead86fe89041a7', + 156188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '79f1f2616c610d0e7225d8d223e6c1492f55d9bd1a70ca24c7cf7193f2f582f7', + 180524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dd6eb23c4972b346197d272c4e2479b89ed240ece4d2b0e0cd89f0c1caa2710', + 154628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '269c0b1ed19ae25d8b499778df368bb5c7a32dc1b1343048b1c54544cc3f6387', + 178112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0ba5609d6562c76ab7db73fa9c9b283d210598cb318a45d4085f540e4753d60', + 152860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ba6604eb5ff37f0512176b1a1fa03e455aca7cf8f6f1b2f403427c6081267ab', + 176504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec23e010878cf0841f910ef94f62294e40c7d77ce99be250dba2911d0a1a61cd', + 151516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d37ac5823b014e3e50552370ee3868fedafcda8e309129fa769e2f2a5908947', + 174628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed709f2ba2be295030614990104cb4c9c62bc2a2445c25ccb19a1500158a5a8b', + 150292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '080843be82e9e08f0d19a3678b6cc92748afb93bed4dadf920197a6d3d86fea0', + 172720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '959b003f035e38fa3f274632c1f7b54983688f9e8860c1bd0335fd1b309dec74', + 149072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ab5746e65950113cc97c59d11c1b2ff29222c6ecead29819220b1621c129e6f', + 169984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b2ce657fc4350b5a66ba61a748986d01abfe385401cb581ed35c44a7a1d5d88', + 147708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '05aeab4a2bc04c13ad70ca2edfe9ac52af313012b26efe68d69e82fedad9a3f9', + 167692, + ), + }, + 'PortLligatSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '450b98b5ebc7b82307e9a68d1b2dad3c4ab841eb7ec72f716ab1d3f10f1d2f84', + 31556, + ), + }, + 'PortLligatSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81fa41860fa92264e04b596ead173758bb60be0c64de12bd0705f12e6aadca45', + 35600, + ), + }, + 'PottaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46bcce6f76fd1e987d60591b911332cbf3ef51f1bd2ca99b138caed86e8636e5', + 4911476, + ), + }, + 'PragatiNarrow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa17ecd52b449c9f729b0b12daaaddd5453093e9f1bb6eb3618a6d037d7f2b58', + 208808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd932fb062cbe9cdf96d64b8a100edfde3d3fec9534bc5d1b9ee58d27e6b4e1f3', + 208068, + ), + }, + 'Praise': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2087d0eb49eb8323564cda884f297f40766d343607f2e4b65090cdb06d0cf8f1', + 97588, + ), + }, + 'Prata': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd969aa1fc429ecdb4862649feee6f24b6d313c658f6a703f184ac046eeb63f5', + 60272, + ), + }, + 'Preahvihear': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b500722428c12066b7835b014adddc7df356ba4674ecdb7b0889625092b53c7', + 51856, + ), + }, + 'PressStart2P': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e9e854f71aebd3bb8342321d0cc92cabf68e27354dd7a90e806bce895da8dca', + 55168, + ), + }, + 'Pridi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a203e818c2df43809c2de3280751adea716ddcc943ad7b7f04950082103d98f', + 104492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1af02215445893d50b3a4e9e40b6b04cff4c38e3cb12eb3d5dc9186c424b5ce6', + 106940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe3d792fc850c5480227c6e81cf204052d5ffd91fe1d857abff996893433f76b', + 108224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae3a3ffdb97757419d65dea134a2fbe96273cc0aac2057816f0138579868793e', + 105508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7696864ba72b6ee5d405bbef2e3ad86a7f24ea7b71c2d65e6959c9f6570e0a62', + 102616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '183e56adf4d872e6a86216efb2d3380e9e5ff78b5d7c1cf85b8b4e4f51a4fbeb', + 101764, + ), + }, + 'PrincessSofia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '970bb1a01c8d692ead4dc75da70eae89204fd472ebfc088c529fc1e42aae7d9c', + 270232, + ), + }, + 'Prociono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd76f3c8cbe2dab1d2d4e6845ea269d87fb7015ff6c70a0a71926d774c57c604b', + 28568, + ), + }, + 'Prompt': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a489290a327fc510777e83dc82e711b781169edb7a84e2a785b5867ec4c864dd', + 90928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bd3c655402d47efd8cddebde74b9afd2282dd26b039f93ae2b0e487aa10090c2', + 100536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '588ba94aa8c3d0d517dcac7ef3b1fc061153b53c6df2b7b0e1f6e05c73df4705', + 90896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cbe6b84d858740f8bc9913242f3e20fa01edbb32b8ef0519f0c1547934fd860a', + 100552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'baf069e3700f657f80949346c929509c0e0f208da514d380e427bada5635b5fa', + 90300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ae280957d7c3fcf17881f323498a163916d72d7e2490a9a4775c0f9c6f59d308', + 99952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b50e6c5262fe9153ad942fb914a5b57cb22f3397089de49de58eeda1c0dad45', + 90212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '38e7c34ce7e432b73db52318813b6dd310f29f0b6e710c72eb524e879b9c18e9', + 98976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a89ffa348255a18e0c17a93b50c3fc60e513d7b0ada71bc82b8520611865806', + 90152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a9689dc478d6814ea7b89255ece8cb91ebddfa5e9805ec227d60bdbbe0fae69', + 98712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bb01b2b8c5212b8d0e9290ead5691a895f910537d4ed4d6e9518c49920100e8', + 88144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '98f312c2e42be523aabba2c918ed5fdb7414288e1654349ebf8ba34bcd54dcb5', + 98476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66bdb078d934c265653181ce3b20c446b41b649b50d774755765c72af7bf9cde', + 89704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '35047d1cdaaf9794f6e2fd863bd4a159ea348432d2f7f7520a00b6f752e299a4', + 98096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6f3e7c789f99bf8bb7dae3ccf8cebd3ef0933193fdffbddb638d42f1f8ecc86', + 89248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bb780b378160efe571a36af7533ae866b9dbe3125a21c76725d069351f153264', + 97988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a9dde16bb4c8d123aa995dac5999bdcb06327a304184c2a47573626b2e7a23b', + 88988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69afa7ad7b23d764ff62beb1a0a79f3a6fb4af796aa007b81fa6a112b312bbad', + 111796, + ), + }, + 'ProstoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69aef8be92fb59ad8cffcbb12dae8f597f1332089e50b06f776c03b3402895ce', + 41992, + ), + }, + 'ProtestGuerrilla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '252d087ef16fe4b43f17eddacfa63105741a98653f8ac91b9d510e6b2c3af5ec', + 58680, + ), + }, + 'ProtestRevolution': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11f5b933e668b2e1d23a70a32415a2841483176eb7d998a5f2fbe5b955206c4a', + 600592, + ), + }, + 'ProtestRiot': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0b17219049310dcdad28287f187c77961302f6c97787245e2d5cf6834c8b05d', + 74092, + ), + }, + 'ProtestStrike': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4e0c466aa53e3705612e3c8d6d8ddeeda2e15bd0f776e71b49eff78b79b92a9', + 58504, + ), + }, + 'ProzaLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b794eb5e68c76f1be231c6abd83206310d36a11079fa39c789b7bcc310e66288', + 76196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '83bad983eca414b664a29ed143268ad65f1e0994116be3b7437531465af33166', + 76068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8736a3a1098c5523c6b05fb8b47a4f8ef005df6cd4c8d3cc29d95af6ce08e72c', + 76272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b168db04e9d0e28c9a73b994528dd61226db580191372bc9643a9b436d41fabe', + 76424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11121bf929802549ba247318f909f057b9bc81376e6671d815fdac994f3fcb34', + 76508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0510042f3e1ff0fa3ff2afa95271ec3e5adc7737ec70e8f1604a9f5e596e402b', + 76428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a86b73094aafa9de9ab868185799b92d6b67d32ab9cef91b2edff4c225d51d6', + 76084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec3614b2eee1833771c89e21c4c70eb3770b26b7290e2465e94f7ef7cc7ad065', + 76224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b04207f332a3a7c05f6aa3bbb6328ce2f4f5c6fff1c59097f45902f46507f52', + 89932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a7c3d16aee13a00d55b67bd114de9890ac30c30aa6fcbfc791e56c76e9d6297', + 89228, + ), + }, + 'PublicSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbc55ef297c51e1a0f8c72e05717a4711074e6e040f9c9657ff88b29f1b0067d', + 56000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '807c09d5b99bdaf4f084b226c873fe2d4ca33bab5945fed83567d2a3f16d342d', + 56176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad7bf570be7407917699d4eadb6a415b81b38099b66b677ce133e2f0d7c6049a', + 56176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66ba2d7468d17e65d7538ae9ddc6e663510174db00bf10003d0726c817cf8a18', + 56148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '679cce2a9e56089a66c76772e3fb3924a01325a094ac8f3d5f2d489ca9781069', + 56140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '968c928dfacff6aa0ece63e93b2865deece05577da941f453ffc7e48b665d4da', + 56220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6707c8bf0774eec994c7ae15c8cbe9adb13c5fad63b4cfdd9733e94ab7f40277', + 56340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b314c88b978246718779b1530c1e3e65e31ac9e4f3d5d838fe0e5d4a63a02c77', + 56508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05e6a4da968754f0614965a2d228e04f06babc1c50c1c512ea2e91c4e82c9dd0', + 56476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'edb39f3dbacddcd877d4732cfbc9490cfd7bf4a5855b01c7470ba2767fee1a47', + 58248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3179dd0d18e85849aef78ae55c83789614358a5a999f900b9e5a18d7a9ef0490', + 58476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e85bfc9f9f3a84d4bba169ef15dbe2c2f2a2a609c8b2f60575645a038ab7c5e', + 58424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3d778a4166530a9dc308fa32cafd0a7d95d2efe12efce3ca92fee8c6f289c925', + 58280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2926bfbe1ca0b702a81dff880515452ce35bcb555f78486d76951e647e3e0e50', + 58400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7552a78c51bcee8a38a952b7508d43981416c45c4afa73eef3ab5db899986c7e', + 58536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a15e4e721e3a036eac47141fb7f977b8040264af943e18757af77ba300d6fae8', + 58684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a9c5315d2ae5fc100d938c56672343340596ffe69b31d9e0c3784829a2e5e322', + 58892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f01005a9323da92732c62aa76dc0f58827b477069cc7587b9c95d8995eb1f55c', + 58868, + ), + }, + 'PuppiesPlay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b316722d9f408bd52ef25b5b786b903ea36a2dcd116d1e95c10bb9c558de0a9c', + 103680, + ), + }, + 'Puritan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1cb7f55e5f92b1ebd41ed56532c723d8e39af753319441a3702b11d4ffc3bce7', + 22600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '175b8c86afcba7b9a08130700b7aa26aff348e0a1634c70ea2ba12fbf40fac6a', + 23880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c09bf5c069ad1de20a3404e99d46dc169e0e5e4cbcc8361585e37173a40d6897', + 22376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70f00c0ac7ccbc41cc29cb6db7df2b241c27143436b3d81fd34c346673dd9359', + 23772, + ), + }, + 'PurplePurse': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a2a42f6e80f35a3eccae7f30d1f7ab086cfe2d4905020d35c9d2b3994e6b952', + 59664, + ), + }, + 'Qahiri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f418a24af3c85ade9e86215fc3b9904c5a2d5e8a86a4c19ccc12b330c39e8def', + 19704, + ), + }, + 'Quando': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54167b158eb5f0afb7f16880da0adb3ebd589f4ee12f7bb62ed4f628043c887a', + 46320, + ), + }, + 'Quantico': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f10dca42b42c9253a3a2cca6cdaf1c5ea34d856627c345beda57e1231836fd3', + 18656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e920890272e2f0a6ac37e5ef10dfc1a45ceb58a85cecda1befc17880e4413844', + 19836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e239fedd7cc4e31856903431cd8b34c72bbbb78fe8c62bd44ca46e1d14258ee', + 18616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '075721eb9ab1a169a4ce792f040170027a8262dd2f06dbfeb14bab8c7d839cab', + 18364, + ), + }, + 'Quattrocento': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f36a9561fc4986d0aac4878ec4f351a432931773328b293355e3cf1c3655212d', + 65952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8a5308cad793492be58b4f5dac884b7917e7a03227cc63898db9643cc13c2ed', + 66664, + ), + }, + 'QuattrocentoSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ffae1916877ea5a1e41c70ef5b667ea46e795fd79a695ed7aa1246fb505e11a', + 38944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6f2b966435053b255d2f8dfd44f193d9ab28d7cb8f180dc86c6b6af21786ac37', + 44116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3077e4a24b22b77e9fc97fe6d9ba0bc1f4b81d8bcadebae7ef200f166f4d9beb', + 38464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2fc734b3a6e9b2c2f1b34bd28f2449a18eec63a7e54d6d973b6ae13c7cf307ed', + 39552, + ), + }, + 'Questrial': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5323763074c9948e7258f71dbecda23f38cb2b2b9ea2cb9be59266b52f0458ea', + 115556, + ), + }, + 'Quicksand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1706916eebf8882bedc1c8f4a7300c744431eac4b54c820ea5502196d387dd8b', + 72940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1af2320c17e48cec8f6f73590d9ff01e2c391182dca5a1c4aae4f13ff74b3d27', + 73200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '656b9306f9d219ab4ab3a75cead3dbfbd95c2e03810da37caf64f657fe7797c2', + 73208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eafa4e892358ecd36b0985550d530d2fe41e4147d0cc9fb212008d5d9c44257e', + 73116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75e85595ac7acf57cdb1c64202577c48150e7aee3fcf600c558d082b040cb8c1', + 72892, + ), + }, + 'Quintessential': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b95696fa4eb6139993f920cc18b7ec1048c6ec04713eb886d21008514bdf0c52', + 70712, + ), + }, + 'Qwigley': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aa3790ff1eb4f7121a93059550cf0406d63f8e57d211f15d9227768920487cf9', + 56936, + ), + }, + 'QwitcherGrypen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ac6c6ec2d8e713d2c580f63d0ace679541d73fc6e7cd4b052d79840e9ee11e1', + 137364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7ea60428038000e7168374995d53365d49b2acc5e42f2756f9320bcdd483304', + 142980, + ), + }, + 'REM': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '323be923b73555bf68adf2c042e846e0c183e7956a68c23c34e41be8eb8e5721', + 70836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f819dce1dbd38146896d3b2312f39baff9f59c014b17793fc3daa3c3ebe489cb', + 70956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75b3d6e02d449e437d9ff8fcc2a7f8a2ac15f6918bf4b85379a7dc401d20394f', + 70916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f8951ca3e4c3ab2867269f2c730e6c292efa13d331d4a112a8b50f3c8458619', + 70852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9a90fc04e60530094d081dd5bcb4ca59056b56e6231a37828ad972bd3268b67', + 70812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f087eb382d3ad959d5213aef9c19e7326e8303bed802995d3247e071636df58', + 72104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94eae9f8616cea98ac6c278299757919e76009e7a491dd3b8030f10ffdc7b63d', + 72048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e40a9c9c25d449f1994dc4fbb3390a82c24f4825db018a4304e6fb6f1737af6', + 73072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ebf4e31ea4491e52987f92e93c20475cc62e24472808a62d62ba60ff9249c4c4', + 72956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '83ddfa6358cc3649c82476bfb1a662c9ab2e06e34d963af68f784af20de8de7e', + 72156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '12f6bca9a992858cad0c714c5e3955adad4cc395d30acd9745a048e377700474', + 72296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4793f4f7521ad21663e56eaf974cf234ca0e4fd98b6c299bed4fc2e9a609f65', + 72244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a94b197e2d15160bccb78ecd0ff2e1a8084c540d2f8eb2b5686d2e27205596ad', + 72124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '830dd79d4f5e9c44fda0d4ae2345fbef498f3e972d560b8cb3ca8bb61825d008', + 72200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70ecc23062b32060d831c4e266e7793bfc3600ad5799437b2a1be3b22c27a497', + 73500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce315e579982a3acd8b1a1f9bd27a1c712070446788f5b36364122b76bba9204', + 73408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3582d59ba8e78a06063208983a6efbdf4ca01e40d944ece0550ba7a90c1da345', + 74472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '759bf1ccd98e0db6b9ee2fd13b6a9da416248a72f5ab6093630a0828a4245c02', + 74304, + ), + }, + 'RacingSansOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6492db146d419a7d6762601db2fb05ccb0ab668746577e29448986ba403b451', + 75196, + ), + }, + 'RadioCanada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b631d26775946ee1c268edeb35f78578051dd462521c405ca612a99b01887fc', + 126584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3699871e5d3dd382641446e8fe8340d0aa2db9e5b9dca1756dcf6d9233c4e448', + 126892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dbdf9e5627708f3da25d7812c825c958655c33f56752b24b3e4be69a8f0813b', + 127668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4bbcf532ddde6d246fdad25fecff27283c06b855659ffb75981e80ffe17c30d', + 127636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65ec1e2649a9764805c1e4dcb61bb0d1bae52f0ee7f58bfbae311a1ad72dea55', + 127388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '641ab6448ebf284df9ef1e142563405a2c4d52e73f1cd9a9126512ce28416e7e', + 130016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c532634e5d15df3fd9f52af537885214ad9c0106df2f8e8695a03b81841e2a6a', + 130272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0c092b5ee57105ac48826c10738d146ec180a6d2d34f3236db7162f246d2bf11', + 131044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8dbc2d86cbb19981ab02d5156ca24140b1ae9a368c16934777053a195c638f1b', + 131020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '54eb1ca5a301195b0128f23a62ca81e5e6b5fb550c4f1b406c37daa1eecdb213', + 130776, + ), + }, + 'RadioCanadaBig': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37b3d289e09e5579845760ddfaacc21d1f1b5b5bd38354c23c7bac68df693287', + 44932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d517891e0b0688334b68ff9d036fac8f41801aa225b34d06c0ad0b1408a1047', + 45592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cfbe7e17b427be35938b1ba46ed031766071bee5c1fc34892b003929cc88416', + 45560, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2abf80b7ed9d586eb57c0f648bcfc97c73006588bfb2c717f361aad163e87c62', + 45480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7fdf02e8a1eb4262c3fd7fb252294467b82edc5997391aa60f24a8e60119b3ff', + 47012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a304eea257444054c5607290e4049a10130667d62c77a8bcbc4c30fbf01ba0b7', + 47120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a168b4c7b8812e51ce82f54f17361b84b5770c7fff38900f2a19f2ec302c837', + 47208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c6a2c2080ebb1d75d01edb1065b3fa773a34d6fd3d360412cb51975de3597f13', + 46960, + ), + }, + 'Radley': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fceb10b6e99ab5c511ebbc946bbe5d9d990e077bf378c9b0a1407343487a29b', + 52080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3f32bb11fb764c9e5794b8f9fb5c4b914545a85abd6afbfc417c15e71bb7399a', + 46560, + ), + }, + 'Rajdhani': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46706ef558e44442df1b2eb7e64d7adb9f5e3bb914758c9085ce9afe368f3939', + 217500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccf74b2ede3cb44dad92165d4c31bc8e2a176c598d8cd70da46e62b3a4d0a49c', + 216760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c495735b3267cff50d8df3b4b5dc5bdca37ec037fa360014b18b599fa08e3315', + 214792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd2f6a0f98e1be444711848d21f276181bdec31d60fa3a98caf8073b6fff6471', + 214296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d43bbf095054ec59d2a779db64eddb51c42b96006e35250fa96c65bcca18872', + 216528, + ), + }, + 'Rakkas': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6db6719200a6321cd51661b8fca4322f458a6aca872df98c20e48193c2c726ff', + 92700, + ), + }, + 'Raleway': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '251be9b79c56c266a4372f9338853e50bbc09668722b794ae34183b8e697bb3b', + 117120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19583d20b6cdcf1c65751595c2a14243b24274d1e52aa783c6ed6e6a6b3333d8', + 117324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8e74c232c8ab14cc9d9d9c5d0887fe67f1d160cd3ed4efdb12e7ddfea6503a3', + 117240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c987ca1cd072b77f250319c61804a49616563ed1d8b85e31c4fe2097f140348', + 117196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8b036d7d3302969161de768039b32d3a2f154b9ac8aca750a38f7ed1d6c683e', + 117208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f88de1f51aa5bba876298bb4a1d31fddf7e8107a83f4b7a0bc1f2d7aae612b27', + 117240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5cbc1cdfd1dea8051dd2c6f2c2638a1d717e0569b0db9d4b9bdecb6c9269a47', + 117152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd22679884b4e4609a7ffff6b1d642b46e576bf5dad3a675faf77811849580876', + 117240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '906b8f67da1e9c0723c585bcfc9e49ed18289737cb2725e002e7eab602cf6402', + 116948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '116e91ee30b3866988d9dc5021bd4b2d92d6f807d97d24baabeebc66e15bcdb0', + 115072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4ab1d3649417c5fcfbe3d57f903feb4df25739a20c5ac086df833aaba841fe77', + 115180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd07465600ed2d9cfa52703dc9e44e910eb01c125a3dd80992719e558855785e2', + 115164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e8e7ca2db286356fd4398a790068dac3f7e51cc85b372d87471c18eaab7b7ae', + 114980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f8300ab20a9257b272bb5edd8cf929f0fb00505661459871bccac0af1f6e2ad0', + 115080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f17b53c07e7fa43132d51a837f6afa49ad07a7eafcb192f44065e7bdefbb37a5', + 115192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c939eb26c60e92437e62625c36f369f3e77bf7dc30897c1843c5844a1158c811', + 115064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '63f06de15fa0a01d491b6aa8ecfda99e51dd5713c19b9c483127bef05791e234', + 115340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c8a737b5625e3b6b1a3c17952df0f8294b6368003338f8b475395794902497c7', + 114968, + ), + }, + 'RalewayDots': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d5cbeee558af619a3f7f0d4a5fa151b91eb94d076f17741c493350d35d3a9e2', + 188964, + ), + }, + 'Ramabhadra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58d8aa6c0e1d54f9a12c42011827ba4beb53a236964bdfb1fe960bfefa943cbd', + 319564, + ), + }, + 'Ramaraja': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aac95d598f360eb66008e7676d1bf7023ef655e15df3728c4d5403122b23c60c', + 440392, + ), + }, + 'Rambla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7279495490611d0e9e460b7bf902f5ade730972576cd9b6994e07ac0c2cb7055', + 32208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5f20a7a97db1024d135a413505d62fd75db5ca774ed2b6493e90182c544bd6c', + 34992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad42dc9a07a1932da84b3787b473d9c6617fcb21bdde1be2510dd66fafcee180', + 32248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '90b4329947a09bee519e2cde3ba55e18b0eff8a1c69004381f48354f5ceb10ba', + 34820, + ), + }, + 'RammettoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ced30bf0a7149475d29152a23843562b27006a44dfe84486fb0daea5a625d9d', + 38756, + ), + }, + 'RampartOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c97aef4ef8b4199e91d0a49b42d78e80ccf2102b4d3b112cd2d5759ef6bb72f0', + 3405016, + ), + }, + 'Ranchers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30959d0aee674a57c2064a0453d3568bf69f436b1add896dc68f5c563c752806', + 90044, + ), + }, + 'Rancho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce1e72248e2fe67e871989453a6a7413f491b5f74ba0c0d4fd93af35900a5027', + 43140, + ), + }, + 'Ranga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8924d6e9b10929f0e2cddf64feb58c894925d7920adaa51c2947cc73be87a399', + 105256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9fc0bf54912fd2a95239b6f89e7912dc05a5c91f64425c7e02a4774a52094f3', + 112556, + ), + }, + 'Rasa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1fe3bee2b1cde579ff829a67ad58996c9bb2d55c76f13b80a146fc5df1a03273', + 245076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74b1e2e58067938a037ae4275d19a7374ea74df4d62a2ee264912a993214660a', + 245892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad9aa069aaa1f3ecbd1a17293b09565fb02aa794450815a7fab48211a54b0a17', + 245896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '122d58769f77343415aa4eb209739fc775e251b9e906e755ab50112930a0fa02', + 246012, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f93d7e3e1b39f9759f70ba725157ed4a6e5f61ae9d9588c93c74d47fe46e4dd0', + 245176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c5b654708bffbcf1cc00b1f7386bac493d251e1ff8346124e12de73dfcb2625', + 148688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7246f4fb9d33aca54e07a2cc0c639f6fff7a59772f652427f6580d17d258e4bb', + 148604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '190ea52498205d230ad681b2e83ece0d724f9a888bfa2d5b03d395d52f35ab83', + 148680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8f8219281331406d6a6c6746d3a68357b05bd6065734a41f0055124370ef6be7', + 148804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b83f274e3a01a577c49daf3459e70f2e25e337da172b595fc5b64d7db3b998b', + 147932, + ), + }, + 'Rationale': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ca296c443dbda669330e89426f990de63efe15a7521771226bb4158e3aef57f', + 24460, + ), + }, + 'RaviPrakash': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51de42bf582cd7f7d6e9d1ff0cd14fa3d9f17d51509d9d5a6a18501f047e2024', + 214764, + ), + }, + 'ReadexPro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f279458dd6c19801c903d9e471c8564d5b8cc0b639e5bff1cb2c9a1f0f2a647', + 92088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fdd397f7c5e4db7672e46b4b7b15f6f5d4a7af92457e713f8dc4b14538c916d', + 92208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd01db080f4e540c5eb64f567df67d82e951bd72b739e26ccbe55fc9c1ea03f4c', + 91720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed47cb984d1f274788ab1d7e5e435d25e9facc7adbdf87168f71dda4b1d24b2c', + 92260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54840850d336e22dca0bd8224a6dc294721e62642eab203f8acbe35a7ea402b8', + 92396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '711c43d85e02884b5bc74994b87fab1fe84c9f9548495a1c2f0b779b7995f861', + 92368, + ), + }, + 'Recursive': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '894218dd63f2aa1c8a7a09f0be6be2073f3900a1213d9327fc1d1d721b4e22f4', + 129608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '79cdbd503149b4f7b2edcd9dfa84159036cea1c7216b4daccd549347b0d2abb5', + 129732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e93ad04d5948b7c7dcf27826f6e08fa3ca70bbea3c259919236d56bc63d2738', + 129728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '294b4b4dbd27a1ab59f838a9d76ab26731d939fbdf741232189e693a42732d15', + 129736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c73189111c5780cbdb16a0ade621477e96c28d28bed26ff642c31ee4c640447e', + 129588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c53e8359a0b3f7664702bdda036a73bfca5447adc1e818fd635b2a41bf8dae9e', + 129540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3a0f60aedf0f6def8bfc84cb0ff1d9510fefbcdd4de7ae50c7782f23d5f39a78', + 129660, + ), + }, + 'RedHatDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67143a372e45c95ae4bec4e7a1431282449117c134d1c9f0ab07f96e73bae5c8', + 47308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f09159fa0511865bf87ad0116020e8f756e2ef8ac904edf43845d685da79139', + 47252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f8f32bd45617b23b1df6e8ec3b31784871066aae2bcdab82a4d2a63d7672b2d', + 47296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77f5403924b0e25af8cc99c5e6d94a4bde118830ad848e41b72f4b6f91251cdf', + 47324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bda617091b9b972bc97f28923e311785652d20b719a5c3ea6309bd697546eb2a', + 47260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0c83bcee968d1775818911e7849dc37c90c129d1c03258f2d575e2f10482b8e', + 47352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc3e3f338535c23969e7b1a4f2a6ba8bea746e9fba0378f8e3dfffdc015a0934', + 47288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5f8c5ab8432fb543d01ff858713e2b0ec075cca71f7f9327ba9d9f12dd234ee0', + 48636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c3ec285d2d41396a10a12f74bcf80a88cfa33d646f60b96d3498e3f3f7c95c78', + 48508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '310dc87918a206d58339367c6a0a1819014a4c3c0a677d3f9fba0b6795205de8', + 48636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bcfc173e5aa70147ef41920a9ed9dd65af6c06d9978a4d043e37758cfa67c1f9', + 48656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7bbe3339eb2e5909a98d55b6ecbbed9943c2c2ba753db88b09b8f1a55cf30b14', + 48548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b6d864e080428a266361ecec480839f894086ae2dec0f618e9fc877c56755f55', + 48696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bfa44e979713349a9321d1ff2d5b1f9caeaacb910dd7c26e14c7253ee67d46ec', + 48620, + ), + }, + 'RedHatMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0fb97d5fb9fbc1edc7b1c6b24b50014abd6728f19b15c717ae3990d1cd9d4594', + 31364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3defcdb46fc2d92b8b7315068a0da7d54e365070ee784a0dbccabb7e51232be3', + 31324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9dc778fd2b6b9e1056eaceee9b09aef373eef7be41893b8585a5d47fa8730722', + 31360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c29d7a0a85f6a08df68ec6f49cd580d007d540ede360354c59ea07c243f36672', + 31376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efd31945f3954af6af3092f1064f299050543910bb000fb4262a7870a2490010', + 31252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7d75eb39d18cbfc65d709839e21079cfb421bdf293b914c424364999d080c547', + 32596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ddda33d05a5e59a37424b5df94ccfa411353e3d1d133e41a98ee8008602b5cfb', + 32392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b21034c3b93a1d8dd93f61fcaf74dbc2c230ec229df3a5882e5b3ce751987b49', + 32532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e876876f4a2c02de481f668770b022abcdc8520f6f12f55a784323004bc076a', + 32540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '969aa7bdff7a2f1f3b9b9d446386c29708d7e4256649848e926555b1f96d4870', + 32428, + ), + }, + 'RedHatText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6f881b9eacea4b9abfd7ce2f08fb9e9fe1bd0d62328525419fd20498fadb6043', + 48164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9fd5480c65db5d8a6a00c6881802e5b99fcee5252f4ef235cb415cf311508146', + 48192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb997390810aea5d9bbd1c1f310d49259d53fa17ca78039c9f13f5687c3dfedb', + 48248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f52ea6d91a09c09f19379c1dad6010d32c95dae3ad98c4ca35d37add1d3a3799', + 48248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89769612866650b9deb6dfb698ac23bfea1c4f48f05acec82f0623eb386d3b8f', + 48168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8917e44629de2297d3f051f1cdd2ec7454258a88398b484aac0f8b9541c13ba3', + 49104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3c638539d7024b1aa9f59857ecdbc024d14b642ba3bc709ff62b17820d5a1541', + 48996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3ef8745fad548fcfb56fa7655d62b9e92907315edf145b6ba155e1ea07f72707', + 49104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2324767f16009020f52b7406360b5b9574eedd5208d7d410097dbe3c119882bb', + 49160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '009c8f4e55d8d01d20b8589c624f10d9c93020806ea657c8b9bdea6b3f82fca3', + 49064, + ), + }, + 'RedRose': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dbddf11810afff4f0b23ee71d8b18a7ac73485413f30f7fb22aeb14b0ef1b66a', + 62016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55be1ec7ec4092251f9a1504362be59c162f2657ce38b7a594f3efdb4ebc0b59', + 62060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c75f7c0e4d6f6200a141a311bb705e52eca26369d77ba1bde445a17186d8a346', + 62104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edfb7e1e6dcf9ca7aae07c3c41de9133101835bd1e5ca9dc8961fbc6736700e4', + 62132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9330a9fbc36ff5506742578acaca0c1dc73f794a4d2dabd0ada811902c90ace6', + 62052, + ), + }, + 'Redacted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '181d9572bd91a3e91087f45a2c8846a80bf92ec73cc0911e082031377e412d34', + 11404, + ), + }, + 'RedactedScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e7784827341a4a812e71d0aa01a7325fc0b8c1eef709d744657c17f7781c926', + 70708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd8a8e3c46fa17ed6e1ea768d109b1309bf6174c5a8e64e9bcdab61fcb47370c', + 70188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e7045615530585024ca8f4b1b4d1ddfa1b4191836087d820c27af41939d9842', + 68168, + ), + }, + 'RedditMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80f51aa17f375318ed8bc72d59f175e7b2d8b5093ae8036c29f39579beeda294', + 79576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef4da64f7478c7e71e260432dc25f2713a3891b93bf1b7090afbc5eaf4c7954b', + 79920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1851dcf37dcc6d724c8a98d4c19a5015c3f605e1bb4920abc5758e7d1889658b', + 79608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8539b7a6d80e1ba66e69e4e14c0391674516e86bcca7f2aaeaddbd01f27c1ae8', + 79828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '51dd3ded3f84d09aad38987501418b7ced04478e40472411e7e5313f6b617f82', + 79720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2af99a519a5ac61b60cc28e2f5c4e983967d2e557b1663f12c4c8656963bce22', + 79760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce84b7b08bed99f121d75d60db39a23f3b315f2f88a457353137ea871f6d9f8f', + 80152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0be357b40aec49ae663c0d73b11d755c516dff2334d794168d3f0f5d8a9a2c7c', + 79800, + ), + }, + 'RedditSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '116e655dc39e7ec4dbce08c8074bdd64ce5626673af53389ef3fe4136b4e572c', + 100008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08c19b34b53f6f02743aaa08a2c0e580050462541036db7d474c89f0fd918960', + 100444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '316223d5827175e0e3f1f5161fd4f3c4667dfd6bf09f1ab583cfe4102e893813', + 100152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '523a5f36137da7d7660d5447c0a28b97e9a389f533374242263a63f355000f56', + 100448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1db263efdaee71920e4bcb983dba48f80e2b59767c8906f943a8f66a92271227', + 100544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9adf7c5c57505582fcec5fbf6a1b0781c99fd02e1e5ad21c95e5f1a7f41889c6', + 100624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '94961fa3b5fc7be6cb6d7ee17f333f751cc915393020377328ce29d4967b7a39', + 101064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68bc63831db0f15787bc6182903a711bb29fb094086447c26a530b8d16f5de7d', + 100720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9fbb2ab73a0e9ba96314e278deb83987d91f9315a39676a676b71c2d62a96856', + 95232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '900b3878699db0340e1c9d381c087111b98842e35286344c439e94dd2e770fc5', + 95272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'edd1c756e9917bd172f0637a0059a81daef48c012bab55f3d0fd04897e713789', + 95052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '06a3efe0d93cf8606d5a98e1175881c0d38f7db75aa2d96d676bdb2b9a50e552', + 95276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '177a67aefd7d3b5371e7f1200db6b42699b13a1dc7732feaafbc0272d372e762', + 95284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3cb82943e3d305a457576d43153d3d4f5193d2596d966db37a28b1764360522d', + 95348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3043bc35c806b7aef1a519c260694931edd0b6b335e1d61c9812f15811141c82', + 95656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eb33412cc86efb3fe2d9e6417487e72b6106ffe49ad54d111046512d46d1586a', + 95512, + ), + }, + 'RedditSansCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '640ad2a654d564fc8c8fa9950fea6879a21a64314b1a3ebbfe2f3d1690e55568', + 98760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9670587dc761bc7ea820afedca2b0a756ca0d2727ca16fde0fbfb1798dbf9527', + 99148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e04c1344999f3261ab9162595cadf99275b1b0c351b233eaea017ffc71e3b848', + 98912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2259d9814e30db5dfd45e7c09562d8e0fbec7344a211222588b7f2d535c14fb2', + 99168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7096f160500007698ba1ec5d24fe7f3d3bad75a45b7dbf9d11a04971dce87619', + 99316, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1080df2e4790b28af018417f73ee7f5d1558b9a9ceb56a37dabcf9e8be7bec4', + 99264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f63f049016325bd21cbb4302bca7230a34e1902901bba6120a1fdc72bac55a11', + 99740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db1c657a43c0907ab09dc66519f6957aa151c4bf5845a4e9ef5ba34bc8c7586a', + 99532, + ), + }, + 'Redressed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcac3ad9bff550045d438a43282a4eb3a20ee265d660ff104f1a9f427dc5000e', + 64388, + ), + }, + 'ReemKufi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6ffe23b03b6d2f9ca46e2ab1bb2f6b5acfd63630cfa9b53fd387b93d843a4f1', + 82740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e03f2dcddd46529c80adaebf84f88fa474a59c4f89122123fbce0e0a3dba548', + 82884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '118b742c6d9f13dc26713f0b4666c2a2ad3fd7861ae39793ecd626eff4261533', + 82904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f26a45f176126b2897137372ec16c9d9fd587f4ae58c56a2ff20f7e254b3606b', + 82668, + ), + }, + 'ReemKufiFun': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0548418e956c383fbb7289fa9107c0cad248921d98c86d07fea8ea6391b9bf44', + 117620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d6e2becce4a45dd9a2cd67aa2460dfcf04c15506002b7619ef970ad91b8e2ad', + 117764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c8500e9b91c352c740b7c28185927532c9daebe48bfae3b61fc6688338c94c7', + 117792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '920510be705675ec79eac213d308ce22f6b94aa5160e8baccb646c4c33b1fe08', + 117576, + ), + }, + 'ReemKufiInk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '424d2f562335014ce4c84298710be9f8827455bf1b5a99298576c6417dbbdb59', + 304556, + ), + }, + 'ReenieBeanie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03a88319ca67ab7296033210507a7cea6f5cdb6b2c53958a9546934fdcaf5d29', + 74092, + ), + }, + 'ReggaeOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bea58d1adf690da385cc81bf9f5ff376a015915f8ae58ae546d360e62643099d', + 1967552, + ), + }, + 'RethinkSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c74a177189c30b5606aa29db8edf7f9d5e93ea74774d0278e7a5a57b4b7cdd51', + 58980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9b7814d00b7b55fd9845575e97e1f4862b4aef36203aa3cff2486d06864b88c3', + 59168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95675c78901ed67841b217158e9a5497e689207bb94dc475ea1d4a9c42e4ee5f', + 59056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd49fa053a67a9fb0b256aed4a1de6f10b24b3b3272bb652cbedca3f8910f8b1a', + 59032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47e26c879855d4414815a7fb43ae15fb11f34a0cf90928250079e5d4e1332346', + 59192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bc5fd65360d879f7eb2091875bd4ec9e0d54a6bd555e6882ace70530c669a167', + 57796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '752fb6d0ef57416a7200551e542537f66986c92e24aa24c43c2d0aecb8790bfd', + 58036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3d372350acf573cc0a8265a35a0da9a71877db3d15b77bd2c7ca541aa5a43ba5', + 57940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75d10879830dd72723f01079bb778d1a3e379b2da0236b1047c3afb589d3292f', + 57880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2be85ed83bc8d02987bb490c98c38a93a4df5217e4d6b8625530ec3b912811de', + 58064, + ), + }, + 'Revalia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6913ffe382b2840e368ae186f438a8d34616ca662839b936acb9f85f19422bc', + 32240, + ), + }, + 'RhodiumLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8141e124491cb47820dd1b5f6ec1b32890a202f60c996db7d769a5287d1a34e', + 141492, + ), + }, + 'Ribeye': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c828bd1f5213ab0a7470cb4b16b50c5c5da647bb41f9aed5cb6f04de7dbbd63b', + 75984, + ), + }, + 'RibeyeMarrow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '337d7a1e2971cbd62bc80377bc5c68bbd22d303ca2fd111a110678d011fab8b0', + 73628, + ), + }, + 'Righteous': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df51537b69e04f7443e9f4e214f479fe6d15d6e7150bb64dc224b4adb9297130', + 38844, + ), + }, + 'Risque': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6e50df4434dbf73404d5e26334f71ac8959d1be599d98ea908dc8b585542f943', + 56472, + ), + }, + 'RoadRage': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b235f2cfdeef5974574db081714a68ed9fc404867b2c9543982ec563cea0bd07', + 425896, + ), + }, + 'Roboto': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bccff292ec9884a43d0916f44850e854b1734238dd4eb8786832e0968fe5fd1', + 89892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d80118070c795a3a5ccf79655a5244f06ac93c7e038634b8662cfc19d1171d8', + 90000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '701da98c272b9c0a524c1803e93a36b8f101e1d3972a78f29c115f38050fbc0c', + 90008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f3ec5073a282c666c9a0063573345841229caf50ed34d33017e20d441bf5caf', + 89960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2795ebaffa0da3b670a33353b929adfe059c8faf3bb6bad26d3ee68a8c0f14fc', + 90088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5097aa661fd2bcc0f17fa85cd3e5a18956b319464b3d3bc94fccf0b2055772c7', + 90540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a059c7343a09d6144d964625cb5d7cd9a0692772f981920c253941600447cb8d', + 90536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b106e553c77a3368828a583c3248a31b0fb41788b06f324bc899cf194208eb6', + 90664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8331078f264b686c95ad4864222eb4dea03d1f12e8162913191e8471382e10b5', + 90984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eed3de6301624265b3179a8ccf8eeaf9657d5cccc68430361012c2bdf1f1bbe1', + 93412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '060f05a8d9dbd65825708542f78581c1a1315f9ead643d51cbad64d14f24757e', + 93844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '68f21196717cf0c2d65fd565ab9672aab2e79c5c401ce6a69fa3896b05855410', + 94000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cab2f63113328b72dce6b3e1eac7f268a27290911049f79fe760630c7befd861', + 94168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5b9b1fa3438f533ab41cdbe3d2f477468b2cd8f448531f97c8daa36f8a4f8224', + 94428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea923eb43105ced22a049d9936f3f9a43bb5d3f4a78d2ae59a467dbb6c1831d1', + 94900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07b9b53ecf7da2d6c4af6841bb5c9e16087594914c6723a782805a4201b3cdc5', + 94868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e8add469bcdab22e9423e23f49b6f357a5c55905ebc130a28371753fd61eb592', + 95068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ebc452fce0650d83fcfb7886f3e77669a66e01c5f3097a50a7326702c8d8ac4', + 95356, + ), + }, + 'RobotoFlex': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a0aae29a147c35f86b7950556933ecd8daacf8c7080c6686246f46e1e27c3f8', + 88888, + ), + }, + 'RobotoMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '66fb0366a5fd5462019e22f6ae0a30741dc8f27c0474ff3901dab196212bc956', + 79984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63e70a90afce275e05c817eb2ffffadc2e2daf1073d6cea50181c0f8dc89b6cc', + 79916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0707339daafe005a4f25ffb35c018208ac02f1c35b14405773f36d88a9aad07e', + 79684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c75c21ddc0cad53a5651e0cbb4a0184d71f0b72d05405d2e4121f637479da64e', + 78924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54baeda3df34bf23cfdbdb1a5f162649b8c1ef120944956e9947df76748a384d', + 78912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6693e9456a6412291b6ef0b72b5db1f562392e7f75a7e1665235c48687925d14', + 79180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45c45339ebd8a59b3fc2b1570f504590bb38c546a73d4fc5a98c3f113a0cedb6', + 79100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73bc8efc8111f9ef7909f0d2fbfe8052cd2342f5a84946633ec03e47d887173b', + 84908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4777918f2e0d08fc113e3ee2759623d3bb44feb7434b6432b8fcab21ddad9c85', + 85280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8add2d7b1ee8fca607961238f84c1bd980f5e817cb19d45b70f62b1f6399c25c', + 85556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fe328c08d828298532dac394416685cb4cd6d16dfc3d95e943e13f2683c40aee', + 85632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'faadce56c40af2eceb8c364613d8d5d987fe1ec50974af0c4be0a76c0b2a5992', + 85712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2f71241c7ea4c844055ff35acbeba8cab989e938551cbaa2d2adb7cbcc8d8ded', + 85752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3cd6f4b8ba5f447fafc30130d8c3277aa2f6b5ba5a7c23706ddb78394733a7cf', + 85892, + ), + }, + 'RobotoSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02ca36c5b2e4814ed150cd124349210c1be208471c3942fce4a1057e1556be22', + 215352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da6e53fbf6c90bfc2d31add43b8a80e2d4b1e1813bc40b4d85f115bddeeb2fce', + 215584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0aa75772c7b762d204bf2b4a2dcc052b49ff7da97c544fbc2828501799ad722', + 215600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa36f1a5053cf9567d40de3afbc97f2b76688619f706fca0ce4aea657744ab2e', + 215648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43b9d8ca27ee6b6e30169dbdb5ae51abf9ed04024a082cc82efff51fbb3c311b', + 216028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce4cfd458fd5d65878a8852549ae6afa6cba846b6fd3056e51a1fcd2b8f7ac7a', + 216056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '097f6e89180dc916c8054c849dcb2c28670fda5517a01f7f32687882aa1ad2db', + 216096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bcb86560948f11f144ead8b8ab97af515dcea12fb80166627e130987eb1e7573', + 216192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a8419b9d4c54b48be368098511e599f7e3834c9a5a1ec08daed1611a9c1c5bf', + 216144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '65cd11436a7882a4b63f226683cd13b2f3dccac5a97b0a6b688e500e3b139935', + 220092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5ca15af2a94932355b508a10936b82b31298292e5a708a0cd131fddb03b39e4', + 221052, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c4ba1aff165a7c6afbe1c9e7c752df6f13d5886878d51b99382a0adb2ab079b3', + 221044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1999dfcde5077f0acc84dfc102778169293ce6a677be56de0442c13d0c194114', + 220952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '321165f8d94f43927b88d5fa756fd86f9f6bcdc962d3bd942fc15317d7abcfa5', + 221664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1e935ed055c1eefccc84637c3d231f72376be3ff0b16487fcf190773222473b', + 221768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4b3de82ea6da3dcaad320835219c9bb570a644dd52647879a41670bdfa8368a1', + 221680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2cb33f5a3730275acf6f2de2f18eeb656cb36959ee946f41290e88258b280a95', + 221860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad0c938e6990c0ebe48bdcf69c0e8a66b7bce9c94f3a171df404efb66c483e8c', + 220208, + ), + }, + 'RobotoSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '24ad9492bfd433f2ff9e9316eeb2417fef2f8407a4c45d16da577f2bd5ca693d', + 100956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5c3291c442e6b715f17456057c2cb2fefd01ba5b7278416e918f37067bb5c52e', + 101980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19e048cf1d4a9cd2837e96fc1c104a86f78857388015137d9c8a0e747cde720e', + 101964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0cde4b95c95fe0bd4090d396d48c3db57ff1d666fcb20907ecb713816e630e30', + 101540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ded3208bd065874480a87e96e554fefa2be031d20c49ebeb74e7a468d04f8249', + 102236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76ac31952eceb1d5048a20291862f7968385a39763bbc68e8e554c8f32a2807f', + 102360, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3f0334b6ec4a33f5bc88799a612b418d6543bea64f91aca4e0bdee82bcb0200', + 102212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c09db2c140872ebd0bc7b131f106615325f31a568bde54c53fe32bb9a3be6f6c', + 102388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da13d63891c8ded2c6d53e7171ba4011bd7f99063c5b87f5a80da3b381801717', + 102448, + ), + }, + 'Rochester': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '809cdfa7b0c9ea45e05fdc97f3c6eae321187df5bdb3e31aacec8e2fe113cfc8', + 35504, + ), + }, + 'Rock3D': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '257929ed9f965f1453c094a5a17977ff0a4c6330b00c29c890d256f80b67c24b', + 443884, + ), + }, + 'RockSalt': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e396fb1212e462672f50c76ad6efb72862fc49db710720edc57a273147151aaa', + 103688, + ), + }, + 'RocknRollOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd6d20f137ba1f73bb182163bceb16b48b79d5e958ef38024d67224aca4ad780', + 2463552, + ), + }, + 'Rokkitt': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4261a4d23a621d08d8a9fd904c4575a225e1c16ac30cd8674b57873d551f033d', + 68480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b747fe52e63c29cc6396aecfee058c297d35145266d3222380c1b8c1a04cc362', + 68668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35054d77d5702d68fad48b6e17320de63754b983502ffde65023be5dae5edef2', + 68704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1bd026fdb2a4ea136fae1e1eb96a98517060fb06441cd0d700ad24e9f3a68e3', + 68644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '413f742b675f810bdc1a9591515b62b0936ba66f8aee8e5bd81f7e3705081bd7', + 68620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92a1f5a3416de5fb11c6e0dc0c08070207bbca30c9879b3765a9c82c9640d44b', + 69124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d7a5ece0107c76372e702b788581e6a18e0830fdebd5417153f474ad7abbf1e', + 69092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1dbbbb33abdf4351821cb1313596c743418da625dfefa74968a7d05502781e8a', + 69172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0898a55e4bf430e26bac2af0cfed37705b9fe82d72b3579855282a58b57ad93', + 68844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4f13a1f23d89ab074a7aad099b6f883f50dd56056e38ee5c55bd76ca98615ae1', + 69812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1824b5bffbd1f6805114db8da27c04125e2d380a1b1a6e1c2d22765b32b09db', + 70060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93a84dedb3cac8f83809651f57d27b1ab905f5ba075f203731d032cfecfb5199', + 70064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b97d0ade36e847aa940bbaa09eca438ab158ef9b819394ccf7da5bfc32b092c9', + 69884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c6b3dd0a603b6df102439bb2379a9eb6cec7e3884103acf466164ef52005f152', + 69972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a76d8cbcf62bfe72711ebc2a2cadef7e385b5627265e60da50f4839746504b6', + 70240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7026274c4afe73f0978907eb782e411157b5a5cc2e889fff54dbcd1c8d7aa903', + 70160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8cd21829dc628c507ab09d15f73857bf8776454e29ee2745a1af4eb52b2a8a1d', + 70260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0aa892bc178e58564eb1d98084637759a3e3e7b7e3108364ac3928c83628104', + 70096, + ), + }, + 'Romanesco': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '262846f241ddfec818457c45eae1dd81af8369d6aa96db67b72629837169427a', + 49484, + ), + }, + 'RopaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06b8e288c2852cd9bee452627a928a9a0809ecab983bc6a839d239c5060da6cc', + 36364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2faa6df5435c219f38c24e4636cac1d05f5b2183cbe59b406c7bd7f766334610', + 39084, + ), + }, + 'Rosario': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '046bbe5db9df95974ff20fbb6085681df4798da73a3945d9128e558bfae02dbf', + 72908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8468380fd6e7f583d703b32592cc2745deb1f3044215faeff36bda6401d016cb', + 73144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb6ce12243938f5e689a5b6735dc4eef79847875b078bbd0c22160590143422a', + 73228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e436970cdd678a844b80fcd1049fa3392c9504b67c067f91fb9d7b547a218d35', + 73152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f217dbe64b5760209961ea27f60826a0ef9a36b3e0ed846ce71bc84ae9695ab4', + 70964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c2ac172a2d8b4f474dd3ef1cbe25ea822a82dad994747b68d6ca14f183f3236b', + 71472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aaec1b9e390310c292df2bfc6aee6e22fb9ed9ddf6a7cbd7072475f93b4d4a46', + 71336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '826133608c90f9dc202602c61c7ebbda0147335107fc2e236bbcc8231b2219b1', + 71508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '507d31e4c5e5afa9bf0a21b3b585e0897b0bb7a50b0e1fca4c1abe23185f5dc1', + 71556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0b9f102fe8e334a5c5909a2451107395978b51d9a94c187e057ac00e0a88fe2f', + 71160, + ), + }, + 'Rosarivo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6dc1d7c2af32069889e6508773856318819c5e30b77cb4170fc4473aa0a7828', + 39448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '45d9f8625f2f385eb227a40b5a24007951e8401774a6d9b990ef24502412e60a', + 37444, + ), + }, + 'RougeScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ca8ace28ef95357bf51311d130cb35ba6aacf16846f657d7e5a53424714eccdd', + 45028, + ), + }, + 'Rowdies': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5dc27fa34e96a5a4065da97d956febd966faf438d0f1b453f0a8510f5a5c62a5', + 50672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '786bbe44809cf08d168e8f2ccb1d6bfe3c279bef57ed4d6622d08ddd4a8fc27c', + 50388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd28e55e700de11ca93df1ee0577d55c54df82aa69211e043e29a7bfeb172e86b', + 50324, + ), + }, + 'RozhaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8b564a2294dd0a0864362778ed014526075e307adbec370e860ff6ef7baa846', + 187760, + ), + }, + 'Rubik': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a67d03a47d07fd1aaa6864042e3fd0b19e5da490416a0f4825cce6f4eb865fc1', + 174128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db4588883899babda86dc335c84b4876cd9afaedcd845830e9ac4d11c7fbed97', + 174968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9876a66820c1b56a1b2a7d03cab864a17f1eed5e05bf7027fde46cd4305d2ea5', + 175572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f4d890896f9a59e012488b49c45111d219d4d217928fbe8070f1121c77cef2c', + 175576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9727be7df420f705fcf478126f40b1f297c381af89cc3db35419769274aabf4a', + 175604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f002e1e45fec6b6ac296b24dd096e47cf1621e9563ee729ac02aa86685dc52b1', + 175500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd073b77107b9bcf3d8539e71d0a0d096852d4bbca88547fd03fbb64473d99925', + 175172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2c2e3a7a012c7ea37caabaf4e664c463cf499bfdf6719215d38a772d72a6fa64', + 172544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2da6dec393914b1699c2eea36cf18ea70ea093e305c3d7c5a1ce4166ada67089', + 173124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f2430c88d288c39b580fe7791a451d82c064ed3aacd3ddbe97ff903c8b5d9f48', + 173868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1009e6819f5e30e7bd48027b9370b13276a4954e908dabe8950eaa75bab41c1', + 173996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0e0667dbe0f20963d0b41bc96bb27b1272c94c1f6f94ef23fa2f181748b729db', + 173944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '78127aed6d386d327f98849b439448c0c36b462a1e119ec322b176967f338427', + 174084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '17d1112da9a6a82b16376ab2635d18e972b1e9cacbc634ca8e995292810af2b8', + 173740, + ), + }, + 'Rubik80sFade': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfc4a936e506f6df6ef9463fe886f610c6ee30cf359672df886a139c82215d56', + 3300676, + ), + }, + 'RubikBeastly': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'feba6a43f1eaf49f16660fb319e572ab901d58fce79d34713d6da57da08b402f', + 486848, + ), + }, + 'RubikBrokenFax': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bdf2e35c6593662d2173f7d5eb98bf15b44bb32c8806011958f4c04a139048b', + 471264, + ), + }, + 'RubikBubbles': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '141da16469353130fd351e7733bf9eac9ccff14273f519bb744143fbca48400f', + 207396, + ), + }, + 'RubikBurned': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33d672af860a647803b8bc3f8ebd52e5e6e46b52d6a44df0811ed693ea34dc54', + 574084, + ), + }, + 'RubikDirt': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14b8e518b32bf5856d1813e0b5bd6f8eceab9b942cc3c1de9cac773901c44b27', + 1429136, + ), + }, + 'RubikDistressed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '281b14e112a7b7f9a304e10b3b18f0c823a6848327d96b41a37d2baf17fc31cc', + 851792, + ), + }, + 'RubikDoodleShadow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb09d3e59213ab258d375366345b835280d394f4760f0d08633f63f7e638e07c', + 1291876, + ), + }, + 'RubikDoodleTriangles': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25737c62666acc865b4be4f450096ca82464d17ad8c10039226eb47119ef8ab3', + 1303484, + ), + }, + 'RubikGemstones': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd122d18f80622014ad72d93271fe4e9842bfd5026b83014194fe4751657b7c7', + 250204, + ), + }, + 'RubikGlitch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f37e1d94da8a99f0c8789fd8a6183fa6de6bdfcbc171d094ffd25aedb614be73', + 384280, + ), + }, + 'RubikGlitchPop': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5a69ee9d13e70e0d333c0bba7a999d2c508d35398b389878d962555d8adbaa5', + 1878116, + ), + }, + 'RubikIso': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4cfb5518ff076bcf860a3ed14421b4a7ba5e794cd9ca305c550135316057583a', + 124120, + ), + }, + 'RubikLines': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef74fe97733237825d3655b7f15e06216fe8fe2e89750f37817d2da477f38479', + 1259124, + ), + }, + 'RubikMaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'adccc07743a8d622c58c5e571f05ab60f87cc01d620f516b43aa99ce18748379', + 2171380, + ), + }, + 'RubikMarkerHatch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9f0e19305760e393ee283a6fbb507f336119a6b1b9e281bd65a4be0112f5129', + 344528, + ), + }, + 'RubikMaze': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c1d40420fdece1420472a7821524b3bd3cb316b21d7c129b927e00dc1e86cc0', + 437212, + ), + }, + 'RubikMicrobe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96fccd0700788940f07716f384a505025a90b9d91e1e8d1e610887b459d47a04', + 1379152, + ), + }, + 'RubikMonoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3bfd8e7a9f4144c65fe25715c8afe67596fc3c2b58e5544c9662702d988df8c0', + 73488, + ), + }, + 'RubikMoonrocks': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a82e28c3257ce1a3a602b21ff78b3acb87186edfbc32f195a598a8602aa97401', + 382604, + ), + }, + 'RubikPixels': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f57add712761e3689929e27d43893dd27d67783ad7093cbeebd79c2e8c1295cd', + 5425804, + ), + }, + 'RubikPuddles': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df67a7b7f72916e11460cfc15bd08226f90bc05462d2040bfe75fef5c57c52da', + 383712, + ), + }, + 'RubikScribble': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39437185c9e1267a0426568781150efa32a57647d628c1be0a07aa574e4af496', + 554432, + ), + }, + 'RubikSprayPaint': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e6c34931f1175681ffc0a17994fea2ab0c6aec0e7537638808ce9de17ab4048', + 893604, + ), + }, + 'RubikStorm': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '73646e66c570b0ca3d747faecc59fe1f925990894b1dc4e10deb1e8181ae65bc', + 758672, + ), + }, + 'RubikVinyl': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b866ec0a1a399a86cd5bffe45885d125ef186c05337b11fa114c57cbdb18bba', + 392768, + ), + }, + 'RubikWetPaint': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '164e4e6c0d015fc8205770ed061ec3a44a72a50b0bbfcb4f6081c8e3de5a1451', + 418376, + ), + }, + 'Ruda': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4e59b533ae8988cc1c7d34c929d8d34be53baf213205bd01110f48018a7384b', + 50532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae404f129761c29d1d95b10963ab6b4c6b39aa7fc6201fdccc136ac92da64fd3', + 50584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5349ede6224d57c3e0704a183ae3cc566bb277fe3c101f7c9612d24f63737c0d', + 50592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18c5ed138ce685ce2a7f44871b12e43333f19706ecce80e553758256e0dd9ba9', + 50512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e3181a8ef02ec13c460c29d9d912d7fe97170889326eac34688cfc9ef991873', + 50600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7016b56efa48117800ea2e72b346b3ec5a68128be8271b7873c5c942e827021a', + 50424, + ), + }, + 'Rufina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '37d67263c3c798e24449037fea8bbe577cf785a89e309ba3b36fe02be8513068', + 38092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e69e1fbcebf9b2b0d4e1e35b6120545d45e453f952d590ea9d81d256f5fdb44b', + 38156, + ), + }, + 'RugeBoogie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56a43eeb24ddbbfa7dc77c415714069969e88c4a1837bc59d3978a94704dbe52', + 107976, + ), + }, + 'Ruluko': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b843a62d34f87cb0cd1f41d7b085a2a31f249d588f59f9646dbe9db104c70b8', + 24612, + ), + }, + 'RumRaisin': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5e470839ddd1433527d204e91bbc888f96b4059ff273a81c4de5cd31a43d553', + 59228, + ), + }, + 'RuslanDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb29ca1f7cc0c1b120e4aa45beaabf2a5666f13b83324456eb275ae05cddd132', + 54064, + ), + }, + 'RussoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd9548de02480e52ed86ab9c683758262f2dddd3030e60b0113141a4703fb7af', + 36792, + ), + }, + 'Ruthie': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce9b66fc58dc55f4c9ce3f194d96580422909a64c07059617084a573dfcedebb', + 69948, + ), + }, + 'Ruwudu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '777449cf3ce3920c07bce90e1d63a37a96908bc2b83d98a18ccff6e94575437a', + 103376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50421dc388cdc40b4dd66ee457fee5836df8c2a2478a7363fdc3109c1b7e63b9', + 104228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '619f44113cffb1b9944127f25eb38a9f7c9224eb2b4f83c8b5d255d545d66a9c', + 104700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c2c5c9d03128ed5d07b1bae58c62e94684107ff3fd7a6144eafcc51c1b8f878', + 105100, + ), + }, + 'Rye': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c0463aeec976dc75715e765a815de8e99e823c41f0be0cf9f303ffce874fbac', + 80784, + ), + }, + 'STIXTwoText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6b3ffce697138e9d23ba7142dd381abb195a94c8536283302cf5d089846b1a8', + 190612, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'deaa20d0ed89e5489150c54f663e24c4f9226751f69f35d2483d51ea510354f6', + 190796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ee3ecc208068619874dcf5e3278d53a7c87d28105cb3df0606e6b3014c812f9', + 191132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74d4b5da756db153249abe45cde927dc0ba998b1b07bd74d7d164db2103f0042', + 190920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '085194b58b2d445eb4ba6e45220f393b62f72f60d468557476ff5cb60110777f', + 205616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5159c8aa7ba0411bcd6a69c08017ef355f96de0a0d0c19181405f0a4114d5329', + 206312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e28bbe4227a5b7295a9530188e9ff5ec65064bae81e57e18ea39f6791edb321e', + 206264, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'da349c2a632e3e525140dcc4f3dd9b043efd88833ff3545f02dbe151fea3e6bd', + 205792, + ), + }, + 'SUSE': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ca7ca576f96a81568d8a19bbd86bb34c3373d09ad3c3e6a7178b7cad43ed88b', + 97596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '755659212298e0a9904625c9eac5a677f06bad2f62b68c89f36d369a141a9cf5', + 98000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f8f6c0abc124b567b80ec39a573473afb6b297141ee778fba8cdaab398e9d4b9', + 97984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b61ce201584f00ec4a9a291d3f444fa28b1dfbf54a96364fa01057626ecbb00', + 97960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '215bdd050d1538c377c3b3999684b1c434e1b817355fae45d21f7ebd34e6e443', + 97980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ecd87c548d116aaf4144e9a93e0b915f55dae9759d09dc41a06a2aa037e51d7', + 97936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8b6a5013a5adb62b8ecdcf4d6dea0412b1d72baf9716ef78940ff8be402b46f', + 97860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e1bbdb010b8120b32affa43ccfe5fae9cf3f28f0ff5ef23c81c14825907cf422', + 97580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70c6bac25406611c0170ab652ea3abc6182f0301f1ed246f72da85294bf5860c', + 98168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '55f153c222fba063a17e859d278e6c2869028866050eade79062a30fc41d048b', + 101176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f07f4fde67f0b1c8816744c66ac3b033cc3012e357092b698c9601a7389d3421', + 102020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '696d8597aebabaa736e23be81ccc1a2dcdb7fbf9718871ab1ed34c89df9446f8', + 101876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a4ff3d3a3dd50227525e3f61a66c125f53c154031265557e04a1eed7ce85bb09', + 101836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5d5364bc3ad552027ded394f6f843fe36f765b94da53347accf64e11708aba80', + 101980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fa1c3ac3f7291afdf536b3c0da2ec0bd7d83dc9c43515551996b26e8799ca499', + 102060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd95695a342f3495f6e3db43e16b6d6ea3d4c7ff3d44cdf51af99807a2c20ab12', + 101760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '514f87eb1eba67ebf440f2eaae5536272a4334751a343e5796d193b2f708581e', + 101892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5e69ce759eef4ca2a94f22f59012c597549b08538c37d58d91a31a71ff9a8169', + 102532, + ), + }, + 'SUSEMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '095e8af079fad66675d6bb8cae2632faef2e183e5c0b229602fd27495271622d', + 53924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb5736cec59b3e2134d9aa7763de0f7f6c1ea6e154e90f53ada9d76f37c93391', + 53992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64846516d20b23fae11705df79ce796aa2cdb35e57e03be76a7cda5297d34a91', + 53972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb5323193d674773b101f128c1afa9f2376d583652432d95f40f7e1eb6dff0f2', + 53928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd536cfa2fa1b7de7854c865f7f4bd833a425948dd9447a5860a58131c8aaae73', + 53948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f00a4c6dba30324900c8c3f05cd3370a7ea411fad2852970ff4c7a1b2c6b11a3', + 53908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '505f89bec596bfec38c0f72f69446c17a75761dbe4aa340f0fa41b788ecc8a55', + 53880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '281b4599f61d2c43c005bfb4632715db1cbf71d69d70de14301835848bb4a15d', + 53904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a656900e11f9548191c2bd39e8f701e679ddcc151186887483338d3403a8a31', + 54924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00a18090a09a411f045c7372b9ba8dbe15ec57e5705e315acaf967111b5e558f', + 55008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a3d4e334f795932f6f2b25ba78edfa112447ba4653332caac6f75fc310e4f7ba', + 54944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd3100896b20c18528b266ea3568d914a19a8f9c06ca463c25ebaae3e9f7b3952', + 54832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '148effa456fa518c3657f3f1fb2d56c95ce3cc26a4fd20003c080aecff646699', + 54916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3bded7b8e1414c385fd265842b876975815bcf7fa57f46ae0480fd9ffc7cac5d', + 54960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '17721c8572e9a42ed20d193dcf6e4a8962e79bea89331e4ca5bdc0ba98015077', + 54816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a7aa3bc253f80b467a770a189b3158d3aa9adcfa2ba28f81b228b3e88fa4d439', + 54908, + ), + }, + 'Sacramento': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd2ac3b23b9f02037325e0c3bc513c2e27e7435b26bbd8a2c69a3679b7328913a', + 63680, + ), + }, + 'Sahitya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6696154ab5f0bb3179449135fef6eba68202e27c6ba62ae0b8f300dd40dec950', + 161600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96da399cad53ca8da35ae947702a78424754e7e616abcfa7d56da8da9d5abac2', + 161516, + ), + }, + 'Sail': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8aaf930a0bb1431f34c4c8f9bcae4ead2b71b5fae40f8d0f24e0fcef136bf7d5', + 30800, + ), + }, + 'Saira': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '207ee7fe4341c31dadd1fd90d9de74dc98d38483ae5b236f9e4056054733ef2f', + 67872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b9ed55c266e229bf01467856ae4551f7e9e324404d664568cbb004fde6ebc9a', + 67984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1bb97c424e58b35d9f82d1c932ef0a44b5770da786ce394afb4ac48a884cdacc', + 68444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '260fb0c3305d1348bf95d2419b190ddfdf8371bec147554d0cef8b61ba64d311', + 70292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78ba4c79a5109fa58d616f4086ca937564ff951c82dd18c4a0d2092e719ddde2', + 70352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '38029fc1293a844c1f2b4521fbbbbbb7720f76ae9db2c54e5e065954ac254a1b', + 70256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74cc324edb477b3926a0fee0dcb4427991c286cfa26d88265ffbcc02238097eb', + 70172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5bf40e215f28ba9e68afeed42c8882c7ce313a2621d5f4f23cdde80ee928cfc9', + 70336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c674d3271ebf09e95710e6a4b3915a3a1f4bbe8bdd02022a32996d232bf31bf3', + 70184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eacca2729b8133b1399c262a828e0da571a075d22ff29f120aae3fbdcee80296', + 71160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ac2491083a40358492928a156928c7333696e88c97438123358e80360097bad4', + 71480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ed5a39d93ca84c7ac9232749b0b7bfaa5cb9bdb25d38ecb7ddaf131f8c978cd1', + 72060, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '24a08a279a8ec8ffd283f320eef6324c6b21e4c054e37e67e6a687c837e2a027', + 73816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '52144f933ca3a03c8b36f26bf223010aaf944fef84e6454d7dc9b6207fc5da99', + 73920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd8721ec9e986973c1fc4ee07d618828b6d8576c0df78c04993625cf19d9a86ee', + 73892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'baa00a220d6c01effdaa1cadbd345b57731d43d44d16d2087ff90c78cf8ac08e', + 73752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dcf1e95af2af4f696b1910be7d8fda58229adde60d8dccf8f8ed6c3f2c32e0ff', + 73764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ea9a8d68ec764cd995f3d949cfa5ba801d28261914d09abf7b9c8a9f3545afee', + 73496, + ), + }, + 'SairaStencilOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b1e3f7ae150fbe7ee82028bd1f61c1cfe28f94350fff5e95246547ecf3b4ec60', + 67460, + ), + }, + 'Salsa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fb67770f4222e83969a94d5a8d7fb60f1aa9f7b06d2ffa9d3d0c3179f378844', + 36324, + ), + }, + 'Sanchez': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd90194567418af4c0449bdad7900d3a768bd21fbc0e7c8e9ecb501118fd5297', + 62352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '30b6ace343c234d614beb53ac06b226122e73a71ba291af5fac407123dbf34d1', + 68532, + ), + }, + 'Sancreek': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84122e9d64b2ef32a1776cecb74996b20f3e4e9eeeeef23742c77de6b472363e', + 47432, + ), + }, + 'SankofaDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5e33e0579612dbd8624421c8172b0297a94a7a94b0e2135c5d89684b844bebd', + 233940, + ), + }, + 'Sansation': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20f2639e617204786f208f68747f88c16d23fd37eadb32ad8f2433e055bec542', + 36468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '81a8f2a3ba869ed29a4f14acd71105df7ef9c1847542669460027c8087855442', + 38568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '305efff52ed60a46b6062ac00dec34f503ae2e6477ff69741d12f91154f58b21', + 36188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6b1038718ab0b522fdd59c2131ae4771101c95ab6e63402299fafcfd8f82316f', + 38148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4112170476fa9e03bb3626bde5b603063299f129a96db6541c95e60d082e7590', + 36436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db57eecd0c0be2f190807cc827712cc9b5ec16972e6bfa332d67542b8bc20773', + 38292, + ), + }, + 'Sansita': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a959b67ad71f2a1b722f6785111518ea581d0d0d3fdd1033909071c197f8912', + 43160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ffb4711bbae77716ac6eade3817c6f301ade1bee0cffd4ab909a3a53876315dd', + 48212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db2c932f0b94e849053cc974350390cf949bd9df5cebed3a2932ea4ede530964', + 43472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8281fcdba576290501cefdd2bb1b16ab57ccf26c08863371633fd97599fd7bd6', + 48232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec54e4974f3a75fd61d9a6b93557e9d078a74f5c774c8598b9d832bafc4e3ef1', + 43468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2fc1fdb1cdfe0dd6e4cc89f6bf41ec78005b4cb7b215ceed94081d8954b2b75a', + 48176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '322faca404d64944f6c59d324586ac3749a0776ed28aaefd6066812b9c4b8023', + 43768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2172f053e379984a9b862eae2c49a4df1c01757f8d67883a81090d2ae38daafb', + 48916, + ), + }, + 'SansitaSwashed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b79372a4083382fd753d894edb6d79cf7608c5d929bf33118b1db6ce4455fcd2', + 112152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97153d9919af378343686e97d1d3c235ba4a256ced048328d9ddae578bf247bf', + 112212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1f7f517ddb1562d9465d5c053a4f9b0bb3b4aac3e8885836d4dc3ea5f1d0030', + 112228, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea3ad23f7cc6a73126ef18cead7d9d0f31fe43372518a1ad229f616ad158bf25', + 112248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'baac828c36a8eb76f8fec314ccccb3ba599f52e6b9192e9b5fc88f0e11f8c6d9', + 112140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a75fcf73c8890ba8699b8a6cc46ec665e1486a5b8e6f96403cf42cefa412984', + 112020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a8d11d09635f64520cd206d28fe6111bbab497096b099a237f4c307e503e78b', + 112172, + ), + }, + 'Sarabun': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8334b59154bf52d2da35c4b147d8cb3095f1c392239b4efe5766a69357f49aa', + 81796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd4c1a397d6404ef2124f602f4cbc6b21a609f886023f1961ba5d4cf8278be102', + 84708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1ab1c07af252e4da2700237f576ef87bcb834838571448ae888e26f248601ab', + 81640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a894af856d5a2cf6320e4b6145b9f2fd72c8d0a321ae5674441e3797a70d573c', + 84708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90b4f02bbf4be88a48668928688344c21cfc3b4fd6e95aa059110bfe30231593', + 81604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec55f055342ddee7f8e9c6ab1b0c639f1db27132c126331b60cfccd1e5233938', + 84436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44d9e2aa28d6664bc736a39a68794f8da7b3fe861c9c37cf2ae111bd17416fac', + 81516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9092c7424827de59926a2a7e4198cf8a0c5542d231ee6454c8d9c5903e690cbc', + 84452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '979c6ef064ba5b7c9fb188386ac5ceeeffb5de35311b02bbcd9e2eb801aa1c59', + 81452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c2fa4c9797dee784633b34bf85b7e8c2c64d1197c138cdd8b15e4f1ddee7f63e', + 84484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '95878be79373db199477ddcc7a9bf0395abb0fee4f6d62030d32a09075b9012e', + 81328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0320eec903b15616177c6aa1cca78a1e4757a2a3aa7a639ffcb874775fbc91fe', + 84376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0e7b6ad0c9985f2bb3cd16da9f3f0ae8a99739d4640f638b0479034ab3f16d6', + 81028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c7772a96d1e7d282e750485c57f482180f99836d41856aa7ba490314f580911b', + 84068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd37126a39190526c2f66376df026c90a3bb18a704f2702bc758173464c688551', + 81008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db815816087da79a3b7176aaf2693b4ec0f0ca64af0bdff5cb209012cf94abe0', + 83800, + ), + }, + 'Sarala': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a8d0d22d2777574f94f919b8fe6ff4e611686aefb3752ac4d9e19d50f592d22', + 143168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c990d46bf92657ba8e23ba521b692f3709ccd3924de4a2f8814a7007756f5b80', + 143504, + ), + }, + 'Sarina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccc4eef9941094e91bef1121c17517cb37e71c58b3e06c87cc8655ed9338178d', + 91928, + ), + }, + 'Sarpanch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a383066d3e766dac679685a5aa66e51718c200d68a9a0b6ac208a4653ff63a7', + 166584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f254dfabdc514a278d5bdc14a215c17ec000f5d03fb4b602d08777c19d395cf0', + 166152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8f302b320a0a1508322bfc63071de745162311af6996e0f2c1598e0d4bd584d', + 165904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec9b5d4a697bded96d7d3c7e0fe738bb00c89d95783eec84d13dc4d1ca86df4b', + 166700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de319074f78bbaba1c9005c07d0ff2311cba0ab024b8db84c0df89f76048ff33', + 175188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1574260168910861f0a73811b4c5dac0e050a031a05c0af3e075366f6f26e779', + 176452, + ), + }, + 'SassyFrass': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14cc541b2633b06f1d0c4220b823ca539d2b80372dca9d6b737d27b24546d295', + 107652, + ), + }, + 'Satisfy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eedc585a9d6af50cd2cb5c1d899b5e8f002f45ab505da6fd43d457969da1e58d', + 46236, + ), + }, + 'Savate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14fc6f0986d718a5c2185ff467f31ef6ac88c8551fa0ef4924f034e2dfd01f19', + 162388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb246171a58517b77843a28888a3035c25145966f049755a132e1dea884ad54f', + 162724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '974a8e70cabde51ed46b674718d5e74e40ee70e8ea338f225340e0a1f48eae8c', + 162968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76661680764e4b2897f122a5c6a4b54121b506f9143c763743ac4c31c5dbd1ed', + 163660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b61cdcba991c9494abb684976429accd3d15ee742ae8b26d8d5f9837be6e1703', + 163712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '781b5f17e5e18e28a4160741c971de057dfd13b8400bd317f9d1efd017491472', + 163512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fe1d472f90686feec62d0ddb2e4dd45e9c12f28590b345512600318309bc213', + 163856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '333010622afa0a93079329189ea8b3c43e674bdd22af0818ccf2e31eb4c89938', + 163776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e1e61699653c1876caac9dc13a9e1064d3af375085b311c121560087c480f33', + 166820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93f0c22330adf5ad168ce194285d9e861dc5b0dcb9d15240e43398aed1c7d28d', + 167132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ee99825dc0baea4c8fb69e3cc503494804f922c236333508f0e5c3a290240ca', + 167188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75733d6939b3ac2c8cf9d16724129c528dc866e752b342d7caf52ad73485c6d1', + 168104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1dfebe623deb3b847f6906a9e3051114a928dc161dfb407a52b42c02ce2d1d2c', + 168192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2af6336340cb1606de149d760dcb1060e77be8283cd0343a215b506a43363f7e', + 167952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9852d7b6a0dc3dad60a049cd3fc48bbd86874866a1245f064fac090b1a2a2c36', + 168104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd46db29f5bf5ac13608a29335623addb08428bd4a6595d7be2880dd907e8108f', + 167960, + ), + }, + 'SawarabiGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50880519c7814f353d58a521c6aa3a4c66f9ddb2c17d135f35d31b83885841c5', + 1895872, + ), + }, + 'SawarabiMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a537e99049f2e3533f3ed6b72d63d2fc9e9b8c15ba312f7f53a97906b8891d37', + 1769296, + ), + }, + 'Scada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0a4ddd37d6cc2b29de39f85bb504dc24c608c5eec3b03cd0a7b9cedd3e1308f', + 52588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1dbeadc29e5bf5700c83a5ace7e630cbbe45dc6499d8dfe14c23988bb520e95c', + 55920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '592e8f8debba6f5876fd616256c90d0154c4c0403cd8a547bcec72d73f6d351f', + 52692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '33f0a5e13fb9907ddac4f6da6792da848d009b809bc9a5a4bf102bcbb12c1261', + 55964, + ), + }, + 'ScheherazadeNew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a677e83d20e81eb656ec0b8703a03677cfd4ef654ad7fabcc6853e0211b7132', + 263044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03b4ff3f503275044bb7f40e3f7aa0ee37bc49f4afb8591be3e7e232f828d794', + 513440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4deed5c41485b9641664bfa78f6ad3162d45685ed2b6aa0a2110e9acb32d5602', + 520576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fa3a618ece97c2a0bdf5320ff0cb52da6ef5e13f2b134eacdec588bab229ab5', + 523008, + ), + }, + 'SchibstedGrotesk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '036e2ea733629e5bce48d9daa0141ffb4ec02d0e7acfa16bf660ce6a8e627aa5', + 93912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b6a00d10f90a8bdc8d03c1f9228440d8bc53a0989d46e2fae510ed4e5eda82e7', + 94200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8e72f3cb5935e61308e9ed3009cae24f2f23e10fc18b5d0ec8111d7cab046016', + 94320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2675eb8890cb0f9ddf1efcfa979b49f27354b7e7d6ce26205f4517f33caced45', + 94356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abe895ca222d2f73c8cc6aece6c680fee0c42b5b7b4eb06968149c3268fd5962', + 94672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87a435130d2fc4420e38258665ae79b018b7c5fec9060e31a32782e913d5cb14', + 94568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9d8e186c7af4cf4bcc88d044b00e261f24d06a8c9875d3295e9805171ab459fe', + 95752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '663462364cd629a5007235b5919177d03f2e80e360e7ef7b0cbdb156a68b8f7d', + 96312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2b1f868e3b12be264fe7d93dfacd871e81dd22fd6264f945c67b308edd6ce5c2', + 96440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd25b4bae29d62b9526419ff9e35f43b05b719463189db691ce93e02e3ab53538', + 96376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f8a95ac04ba3ad8ed73a221eb9ff4a39418bc6b2332af06e3671be8e15ff6bd8', + 96756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e138b2d19611e2d5c0414048e1c1ba738a9878a2bae90edfb6bfa583c185af43', + 96504, + ), + }, + 'Schoolbell': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6801a0d08960dc1c7662d57e95d870b60f7655aaa9940c94d1d9eda6be6f33f', + 47164, + ), + }, + 'ScienceGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2053a29ccc127969c2d9c007463b1202c45e5086f3875c9f7e42be3244afb577', + 135880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '602cc000d827aeac4a15d1d9c5c6d2679005c16a1be0223b2ae20e0d2294d75f', + 136024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd751734b0f399047427742bddae9f6140a1cbc925cd89fc9dd19f61938cc537a', + 135784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b7cf5fb25d06cf2e36ef51df0c7f16d4996a594e88804751cdc9b58cf193f69', + 130996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e976cdf4a355d5688b1586424a72c1f3177e019ab585c19c40a8009d2360285', + 132268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb9d39729b7741f1097aaf0bf18bf2a2963185a6703e7716db9241847f8e4aab', + 132520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b59a2a24853849fd685efe72ee686513f972cd23e1527136025b188ca2f4c5f7', + 132328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2be01da6a80d4448913310d427db722f748e82dfdc1fc2f0f74665199419d4ce', + 134168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbe0a7cd5b6c340e82f5b2f1f77b55032edeac132ee9d2d3d7d26b1de8ffc551', + 133928, + ), + }, + 'ScopeOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '857e75f77e04675e898483e40951a295c70b6550995f0d718d7cab6977052c30', + 60216, + ), + }, + 'SeaweedScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16ff037485a95d43bd8143c484828fcd478171aa24d1e31f3b4a50a5566596c4', + 114804, + ), + }, + 'SecularOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '757fb9c205fed7dcd380350d113a85420469e2b14296c9702938f054e411dc39', + 58144, + ), + }, + 'Sedan': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9df7ec17b4d4ecf42961f7c177514988d9eba10da0fd88b99cf587543526ad3', + 54636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e557a817ace195b610ed68862137bb4fcea3a03e267f83d071a4ab52cad7c21c', + 56336, + ), + }, + 'SedanSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dfee2c2f4ced74a1fb56f393efd46a80c70adef0fa855853f4d730a950bed37e', + 76244, + ), + }, + 'SedgwickAve': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e4e63dda251375670c5afbea9bc210c4f9a21230777e74d5a356c03dc50dd9fd', + 88744, + ), + }, + 'SedgwickAveDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4537f6fcc9824700ff844df8629942ca81fd8eeeb3537415fc080f48d9601614', + 85088, + ), + }, + 'Sekuya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b5b32df9f001977ee14b9d9c9c008fa8e06c5f34c3c1e5dc6df15008f289864', + 282652, + ), + }, + 'Sen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f746f2e89b328ce1fc03f198d090bf12ece3e528ccd41db09edeecd21e7357bc', + 33260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '209445ee951df503b6529e22a0acac071c2be36ed456ecde79846dc0d36f02ff', + 33368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd5fbb89391c60f174601d37cc38fc331444fa478864d185ad5cd76ee82ac4b5', + 33376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd26fe9ae5f2e1f6f66608a9b334574de17e90e8dfd8da95fe15b3a0ef9da0b6d', + 33256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e18991188e97a413991ca7528cd19164486e768065e7b540540c1f79999d6806', + 33248, + ), + }, + 'SendFlowers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75ee69bfc8bf4ff360aff1f252667b68839db249569968a0703323165301b618', + 78664, + ), + }, + 'Sevillana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd92238a431ac7fdcabf10322adc2cc8e47d436420f067a70e0eef6420ee6be7a', + 40908, + ), + }, + 'SeymourOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a84ee01aadb36a0ca02f645d4656440a55e94a0687bbcd30f8afdc752bc363b', + 59468, + ), + }, + 'ShadowsIntoLight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e2c2b4ab9c801f7fed23823e007ce15b21662848ff75725cb905dbe11f4eede', + 39060, + ), + }, + 'ShadowsIntoLightTwo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '331b1017f8041b5207c82dd31af64f198c82fdfa740fdd10ba9c342d1668206e', + 33896, + ), + }, + 'Shafarik': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07cdbd172acf48d3488a9c32f1d0e6ed1927ef85195b01186d3db283bb787eda', + 678092, + ), + }, + 'Shalimar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c289d34c31b07855adbcad76e2c3b9d607fd12c7057539c90035ea4add87d17c', + 86356, + ), + }, + 'ShantellSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70e2a17b67cc8550f3d246ea6472013abfab4d845e83d08a99272bf1e262e400', + 392396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd5b0adfeaea7cac22e086de8f8e506e5c08d52cf37146470aec926653b5aa85', + 392684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '969ea5c522bbcf0ebb5bcd172beb6fa0d32d9a05ed1754e36dc4f1467c41e32d', + 392856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8ae0ae5ba748ab30ef320ee405408bfca1492ffd8ed7700c73650aa38b0c03f', + 392912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b746f99768623640cd28afd5d3a4d70df778af12afa8cc76212dfa071a3d07db', + 392788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b4cd1a4dc146facd713bc6a2639b34506d6aebe84523b38431cbc01d5930213', + 392284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '413e2660a9bfc927111735ad4c3ef979bd1c043a044fc8dc569ae993724c3559', + 402324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '72bd4a2a4e6b3ee97574d2040e7389fff13b14632a766d38e04b0156568823c0', + 402848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a81968886da367913a17f6f74c10e56ca898beb055d1f9d54dbd1f24d9431a6b', + 403096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ed831a21d3eb6ca0a2caba4e29431a2b77dbbe7bfc9950183fefb10acf30c622', + 403108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '576e1a5885e85e2cb3d9ec85274295b20bc9a9307e857fc4402b59990f83d000', + 403036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e8cfca616f28418f9ca37350cafd63ed1d28ec758bdfcb1048df413e54ccd33', + 402500, + ), + }, + 'Shanti': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1231602535f6e8b0ca0962780fbc1c75afb5b28b23122391ed290e452f808179', + 47636, + ), + }, + 'Share': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52ed75cf487be12b5ad5fd388efb9fcc02e963f0d69b67f27de8c41d6a34d1c0', + 36888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9bbf214fc0d0317b48a614ffc4d7b52e797a314a1783b95a1a48c19603f2ec25', + 38984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1bfb0bddbc5f65585c4ff1d5ac0ac5ce481e6bbe9c51742b9b516e7eea93de47', + 36920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '617437259bb30f12e95ef6fcc26bcedbebda009b352c21dd3c0dd770c720a862', + 39016, + ), + }, + 'ShareTech': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c30486519130cc6fa97ffbc9304817a78db442114600dc90de4454247a1d5c02', + 27964, + ), + }, + 'ShareTechMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a20d581571c1fdea5568be811e82af607bfe6e0fb0097fc00860d8ef2274d37', + 24416, + ), + }, + 'ShipporiAntique': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b423fecdfbee12c38fa3a72e6a98642eb3088805c12e6d8b989562e052ea491', + 7125988, + ), + }, + 'ShipporiAntiqueB1': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b44b3622c29e4d38d549e168485e83c316f977dc597a957ccc14ed0a15831b88', + 12631180, + ), + }, + 'ShipporiMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'da2233b2de0fe0fb1de67ef9b09bd5cf8c4578b07546bc1969697088780761fb', + 8342816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '07f0edca5b2cc83d06b5ed22861ee5c44e2575351ea91bff093828a31ccb1c78', + 8344824, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7b0414db312387bd47d6dd1a3f92bc034630da440acbddd454011f5f2cc15e3', + 8315600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f1c924beb88da4717df27760b5e4bd3ba0639d2ea56d911453c9b59d30582bc', + 8233368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b7d0d051513d3ab729d4518b756e5a86eb615967875540a38d9540b8daca8c45', + 8232364, + ), + }, + 'ShipporiMinchoB1': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a3d180636b48c5868f52176026b8603cf53c923dd9c5a9047b8f506f13ee700e', + 14673920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8952f1d1a46a15479bc29d827537bd3de516536b6daa81d4cd35fba5f07ea831', + 14631404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db72b969990731466c761eccee77796f6b6827868d1976351ff9f0afa315bb5f', + 14605588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd28a36802b99661738b45f034244b0472171fc68178151db8d3213043b6e8d54', + 14538268, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0d14ae216b430038d37a9bf9fbf586a0f22d6259a4ccefa416dee4f0f5e515c', + 14537056, + ), + }, + 'Shizuru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9572fb5d220b7b01dbdfaefda8a8c1f50fbed2a865a81cf66c743af23cd22340', + 250660, + ), + }, + 'Shojumaru': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4002278987746fa8bf948703afcbad15308e9f1b6dabdb58469172bfcd9ace7b', + 68808, + ), + }, + 'ShortStack': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f22bce063b299b7986aaf7c3982f4fa16a79c01f15f224530e1c720a0c2cc686', + 62808, + ), + }, + 'Shrikhand': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a25a23bfc75826f532af68d3b70a9bf4757b22813197d9e16b3cd92263437335', + 212744, + ), + }, + 'Siemreap': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92e0fc84d52dde9fa43cf07778e5ca97e3775380a75f8d6d4352127e76c9f3b0', + 165980, + ), + }, + 'Sigmar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e45ac245cb640705ac7d36ed330f40dfefe2927c4393d925a2b4d730023027b', + 112892, + ), + }, + 'SigmarOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c0d44850e40f2c1a3678b05da980102c138327e7d4909634a06bcbbee152288', + 103600, + ), + }, + 'Signika': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff887aa6d74c806128f378a539e672530e7c3fb3e1d031cb4ff7284868c0b440', + 198408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3237d5a5a417305b096cdf502d1367d9db964845adfa2f86a7e438f4d402404f', + 198472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '720a170424e78b29999d0614d2c68a0365961f51523326dbcfc7579e94dbaae5', + 198548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e20e418315700a1cd13f390f6c2428db72afc554abe2b4032e182a4a1ed1a9b', + 198592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '83d0a418229f2895d3289e68b9734b1efcc9bb94df036481564930bacf779b86', + 198580, + ), + }, + 'SignikaNegative': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '550d7f3fc487c1d652d83410072a6ed4c67d1f15bb93642153dec771cef6caca', + 191416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '176c5e783d05fcc111ddaa032e273fa787994c383a3edd5e0cd4dca2da37021b', + 191744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '594a5f99f3639a602cf917b1715600459275c3d0ecc20fe84785b37043dca39c', + 191868, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4616dcdc71e3431eededaed361dfbd5b8f81931e8e8fcc0605e4c5b2dbe1d60b', + 191844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c37950653a86a2c49192df57703cb8e648ec9facf7d03f5754d23d5f8424047', + 191888, + ), + }, + 'Silkscreen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14a3ebecb603904f984042526000c4ff8486ca1c291c9c97b5a103a47253d2c7', + 15324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcc0e8cfd8c88849445ed7c1812a67d28728801b7c0898ff409141afb6cd3bd5', + 14328, + ), + }, + 'Simonetta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e31e16a2e96c354d0faf2ae4372767ff50ec43539d336eb8fb6cacc3c0a93bee', + 32668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '73694b0a49993e86d781d0a1f83e7dbdb8a3ae5cc0bf2d470c72e23d88a4606a', + 29980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f4ca5b79d82756d0225b6cbeb872886a12142bca49138e0fc2dae8b54abb86c', + 44084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c2b4d9e78085949edd3a436d233a73878cdba439568a455ec9135692207b19d3', + 45400, + ), + }, + 'SingleDay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6215cf1e8fe70e0e9052edc2c67c86744e2e8ec3e449f31b478828aab80f5bd6', + 638168, + ), + }, + 'Sintony': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b56be9bceebd830e6b9edfabff30aea2979e57922d921713b3755d2f64c8b1f1', + 23740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a18db5e3ec2272549b10c4b0272720d9e690ce734fcc58efd999d727fad2d49', + 23540, + ), + }, + 'SirinStencil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '777be07b0e23790c535d8618a8ede73802dbce2349546b00b7735057e61c25cc', + 32656, + ), + }, + 'Sirivennela': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a400584f5e3af00d84735b87bfdab290f39c0b35b6fb1249a1b2f1e4584f4370', + 611528, + ), + }, + 'SixCaps': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2d5a21d5af15fe2da2afa482c4341144375beddf29f13756379c6841939cf4f6', + 24736, + ), + }, + 'Sixtyfour': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '002ea5ecdae9c091804950312535506ee82ef1a71639f4559681578ae1a09ae3', + 47224, + ), + }, + 'SixtyfourConvergence': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77893d772a9cc3e3985ac6a2ca67960aafd1c7919af57ba3f6e9607d149f1f72', + 86580, + ), + }, + 'Skranji': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be58daf5da0504fe4229dbfa86023c4d619a17940e6971580bbadfd6272be6a8', + 205536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c1f0582f9ec9aef13b8338c6b559a4ffcd8de052e9136b17969f0a6f4e69a424', + 204868, + ), + }, + 'Slabo13px': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2fce3b1fd2e437eb6e6b41c3beacc2acdab1bb96a8f21f95cff354ed0270a868', + 29428, + ), + }, + 'Slabo27px': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0928a358ea71167f7a4db6e01d9ff8a86917372c8040343ef1298f93a755a87', + 31132, + ), + }, + 'Slackey': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '86f8c32d780566c2500810848d3a85134945b9e9f4d3447d0d24708515ad2de5', + 35996, + ), + }, + 'SlacksideOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '649b722ef03b453fb4d0f586faa60c7ef4f183e28978f996ca7f0e3b0bcde910', + 171036, + ), + }, + 'Smokum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6f1f916a5dfc1b44c59b8a5a4a318d51f7197f3f7b0b3fcd124449302316d47', + 61380, + ), + }, + 'Smooch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd2c0b42aaf94a7a613b6f49e35358d2499b610e1e2dcb96bf35dc0cb7f660f5', + 198980, + ), + }, + 'SmoochSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '294b3982d286db6ee7f7fa9d0d592d366661fb3d8a30701c0ad1ece23a73d543', + 57932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '422fdff9a84a517c969b6db5886789048ddfce60d3dc5911ac29712d722814e3', + 57948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0543ae31f8b354ba8d2a8133a6e4e050462681d4168d1efeea810ba199f83696', + 57928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '897c54ff3e5bcab1e0b122787eaa476ea6798e060c24692d1a3ed954f69966cb', + 57916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '05f87e95c55bdd1614b2a533220a65dc833bf14df28fef70800e9e27e8776cd0', + 58020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba10b1a29aeef1cd8a104cb1c40792011dc95ae99e1c733d47f14ef9effb69f3', + 57988, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8041b022b4d982cf8148e9c19000906117aa00e0d907d669cc9eb54a5c188028', + 57920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5964e226453fda923333f21af088c11aadb7b4504a3bd7fd2537429fd4bcb1c0', + 58076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '91d902f1392fa560f0a0b44b9bb87e1bc0035b9a31d9f8304b8ce85c351bcccd', + 57948, + ), + }, + 'Smythe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c79b70667af7b15a946ca79bb9c26c58a52680c8f8bddc82e26067c497ce243e', + 48084, + ), + }, + 'Sniglet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46d7e945b04195d62ff19dcae2380beeeebefdd7163fa48c9e0a0ec8982059ec', + 48048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4abf475eafc22f0e8655f480f55c11b682ad59f32b93f6572d7eaae5e66817a', + 51452, + ), + }, + 'Snippet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2f293fccdbd618851f978ca470df2466cc6d562c431c29a65adafb801449c9b', + 36836, + ), + }, + 'SnowburstOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f379be790dc7fe87e3a9930bfe64762fcb4ab071df7d16d1e7cb338d9ac67c9', + 50692, + ), + }, + 'SofadiOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64a5d541084e43b051f2778e5eeb004f34e92047587e3861d97b6097a0d201c8', + 32144, + ), + }, + 'Sofia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aee9c8e6bb77ed87dacd7ae52cddcb3e6d66b767d84c2e24ff8820fa9eaa1fc4', + 27840, + ), + }, + 'SofiaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e89dfdf9e39eb273a02f54a00742fb77360a5d4d047d2ee6e2470da458378a7', + 110720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f1a459199c67b4a3ef8347b74dc7c048aee11e05388c947782adbf9c87d09ad', + 110816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1368906c547d5b2826b7b1acab8a0a30d5ba14f9d877e406666dc81e47a15f59', + 110752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20a4990fa9bdae6bf7202ecb6561153cf7e9b9c1d82e79c6d742c9a47d822d10', + 110600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c5e25bd713c7fdc386d8c204ee76faac72b0ddc285842c11b1c8a7297f736a7', + 110760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d29f83dc6ceca0724d31c3b5a6cfb4231db3bfd89b53be9fbdbe10ce4a427b1', + 110716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2aab6c4596d1e5bd3d8d20ddc5ccfa20a4eefdb6d4d1eb0d7a5784130f694f64', + 110684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '156f1b5320262f61c97e0b6a249ca577d21748d2751d0421d5f4fb8e02be1c2c', + 110776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ac8b0c84a04c825d61ed4981e58e678230ebbe7f541a125e73ce2af92ef9a56', + 110672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2d04eb84d29a8a0163e20dc48f7143a5cd8398e94bbe26497bed0056d910ab69', + 100024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c14ff1a47b5a2ce01d05f9e4ef5f44a95f5e951e18c6cccbdca6c6985d6f3904', + 100128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '98f5244f1f513693d06f7f1bc1b21550ea264252166c87cd1d918d30a217b2af', + 100128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5eb3c0b9c9faf2906cfa0931f71103f93051ba3f4e503e91afb1ec9105b4db64', + 99836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6dcffb37046b59f62fb44d29ab245fd5001164e1c1c58308b381425e3195b408', + 100124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6fc6c193b2a9b364dd8b276459f5e24019e8ad98d3bf2dbd9743117c89f5f933', + 100128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1fa078b0c90a40c6c4f52ab8c4202dcb6586697d44e3429494ec3362b6d4f73', + 99980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2e92038b257b6424bf4a08acee7be57bd32535cf38880b0897286b336b478fda', + 100244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ebd6403ee380faa2a977ce48bd4a9a85ddf1c95e788be402ce40ca0562dc193e', + 100092, + ), + }, + 'SofiaSansCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6ca0a8a9cb25e0cfb1c8f313c4f3d182ed96164146fa4308282de5f0c9770f0', + 109936, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '47c324daf6d46cc2a646dec17c77d3db82386b9ca30f3ed7ba071e9f4023fae4', + 110120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6cca040d2a07c389237d3a5c52a5703b111ebaae56e0812a7592361ab67edd17', + 110080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e2746a2b72d2055b55cfba7c19d04d12f3cb115c7a3aecd89b54476f2355031', + 110056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b2ff3c23577b21466a4695822b72a4649da07c27378438009ad67e6eda46f594', + 110076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f53e4532cb8863c804506d79736ad57cea66753784406a5a71a970d78cf6543b', + 110192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc5bd771c4be01392494f16f8b90e2e7e91ea34a028fbd8aa32e6979aca4ba51', + 110100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c2e1a29312683f12e756384c3c4444436716fe8e564504698792a10065db486c', + 110232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bfd00a4b9103655c0eeeb5c427185f8d3f31d256a00f26780ea6631597d036d', + 110056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '418a11002466dbd644ebbb0dffaefcf63ffe9b4c1482fe51a82583e863143469', + 99488, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a520ba144c9ab8d0e9d3ed94592f617496c65d9fffd7b45475566f7c6c6cbcd4', + 99600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6699fd1ede1d121bb016820fd662410de3cc09ec3ea897ff7a72cca8ce3f3231', + 99524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c768f6966c3775c89b6c98c3663e1a22185ea680af8feb335738548d50f666e7', + 99412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9152c037cc0306a0d9336f0eae8089698490a2bd8f75662870b1bb8257ab78da', + 99580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1037a8c7ba7659560dba9e47a379317dda955ec248b4b7177b10218d4371a759', + 99628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '114d8b7f2aaac0fb79b8d3389d705130311d4631aac6643a6b2f545da2a11fce', + 99492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd9c005f99b2f92193f05ed0e983843265880b4abf63eedf60ad42439c0715be9', + 99684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a69faf1f10771201c208d59b718ca6807fc1f43a3d394fbdbae85bff0a2b061', + 99660, + ), + }, + 'SofiaSansExtraCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c119ce9132d86be1af5bb9614f362f1b86594c47fe5061b49f9a5f0df117733', + 109484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10426992c11d728ecb8f3937adb603a9c61f81466ecbea28e52d161b2e41760b', + 109696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c636a5dfc6260c0c07d3aafc6b775cc1f24f6fcdddb08680b30e40bc136768b4', + 109680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5be1770660d132f159dc193a32777761d5f187b8fd74d3fdb3e7e436a65608f8', + 109644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3b8de3100b47f55f95f700e28b96378b34438fdac75d1a59a20be6584df1c185', + 109728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f1d691f46caa20ed194ccfeacb13b6cf157156b19d641c9dabeec561fd50e61', + 109780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '823fe07210aab301f604ecdc9752d6a495a06c662309fd4fd4f9a87c5cd7c8a0', + 109740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '798fc3612daaaefd233d74e2b0d62ddef477524326002415f7480e4d1a0a950a', + 109740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af976215289bdc3b339d9134656f01262687e3f4b2d0157be64735c6ddd38138', + 109688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e6a16ca119a97e1109e0f28eff6b171554d33ff767034056da6fdbb3c70a797', + 97568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5d9ce87e9fe2cdd776713b58851fe4857abacbd85580980579018e9aab16dc90', + 97664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'aaf77599994dedeee327922401c3c0697ccbb8a00d7fab2c0d80a173e8322576', + 97668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '97429da582d3d6ea9e703b0490a2edec6aa4ed3463db8259856d6c42255737a0', + 97464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8ffa9fc8973ab5efa60f7a7cc5765be681fea7bc4c57c62b8390a7d418932610', + 97688, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '81565f3f0bae831a750a10964ffc6df256498de3fe36b4cfdd49b7f62a97c4ed', + 97816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '67bcc54eb996c01daf2f688d0eac942f0b6df17ee7b6f855a8b8aa44b2f21ad0', + 97732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '903687ea8584f67b75478cadeab68d1fdcfdecd5505f8998903a4df144c66752', + 97944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1468d9a361a9b7558f67b841fb843b3402bf5395438230dc7ed3f38659867690', + 97856, + ), + }, + 'SofiaSansSemiCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc9d34ec6448193b16090f4946f4b9dd0696dbe1281df1dd5074433e82d93783', + 110856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a887fbfd580881408ddb60a8f0e42e5f6e38aa92b6cc28d2479a0991ebb3ed72', + 110920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '670eb6b91ca9b1b6dc3596430609a2eac0ef1ce8d1eb6aabad0258c9f2b8b7c6', + 110884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bbfd7e3e16b8ee2a84d90f9fb34bcd59c9e710b5b95deade444d5ed31edec7c', + 110872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '52d5df8b9996d7d7d32cbfaf2f980e3d5abc1bda4ec69c326d5133ff5d49f0fe', + 110948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65353b5d8499aecd73afa79847ff9cb42cef052079b20d8fb216539c202977b0', + 110960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69dad5e2b1661f67c3ba735599fdfb720aafd153b6556748f679be7f3f244788', + 110920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b50827687a56d5b1b27708937ea615cc06816cb4eeea4515fa2ccab6bcd4dbe3', + 110944, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1db633ea15bf81d4b77a84fad2a514999fa434e5903dfd741d26aaf5e0246a59', + 110852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '46bd080034df652853c862bb151f0cc18ad773beecc96b33e1ee2ff6ab47ba36', + 100564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fd33f471a429f56b340b95894b42ed1eb8598184fb2685ca6676e42c2e888bf1', + 100760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9d93e83ecd004c3a45fdd23f7b2449e00fedcd650bcd4f97905c98828f25890d', + 100652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c747bdc6efa5d3c07972f5097acdad7d8cec3ed1b0b92700c678b689ae34a6a8', + 100440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bccc408b3efe253e775d61c1b8139908b17c8c3708b4b9e52ac46e5ba2f68c55', + 100724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '18b3c5c12315c949e4444464e61b52b265877d1b95ce7bdf1236897ea2ea8643', + 100696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2c0889c100061fcae84a27877b3a3ca8753de9e125696fb45e65ca9ddd983379', + 100632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7ec027d8646d4cfd74f2438ef467c3865afe98476587edbdc0fb71cacc6aaa3f', + 100724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7cdf8ece95dadb38933954dd4e6cef04de277276d249d222532cf336e6ded8a4', + 100620, + ), + }, + 'Solitreo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fca90482e2f284d5b35cab38a3fde1b5387aa1080de012a458e612e7ccf6cda', + 65136, + ), + }, + 'Solway': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c525b4c52569f56fd1a208f8b939db3726cdc5e2f0b902d9fc07a0a8f301ef0a', + 34204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'acec6761ae85d19050e2130cfc530ed6794fe6de6426ee0d39e1e1db3f0cf258', + 36552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe6240acbd6ea654f61d5c85043a966ba930b4d0f035739ed2729e7ed5250226', + 36552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'aba66594e6993d0941b6e6824171973522e5cc596b67792b4aa682729176a677', + 37092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ab335061864d156ad23780be407706be73a40e1a39fa1ec7d27552436ae665f8', + 37424, + ), + }, + 'SometypeMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7ee1e2711b05aa38557050e1d6454b52f9af35fa39770120f95507936152a8c1', + 38308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df6584f4b1ecb168b988ba001d470912e86080805948cc5e57843db79f71bb33', + 38284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0effad0732d8ab31858725ae44bcf1ea837df43da08062ca9ecb8975634726ce', + 38248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b3d55a0838ebad0ac7c24507fe2f595201a7c91b2623617489ef00d1639b26f1', + 38124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eb3c9620239e08a6cf532c6b06d74df3ddbb5629c8176627fe0e2cb7af1445fa', + 39132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '127dc04ecb433f166b986a32e781867ccefca24a2268ede5c27955aa4e2b82f8', + 39196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '83728345e8de02156e6df571a373397b09cd1ea359d5c57839e9bd41e9a6e83d', + 39192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f147a53abaa2d6face49e08df607ee89c1331220be62a752233919799683b23d', + 39024, + ), + }, + 'SongMyung': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '61634f3015ae09062750e89325aa7080bd01f58ec046fa91ead520ddbcd00e77', + 1202620, + ), + }, + 'Sono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f463e5dd75414b8bf093807ec8f12adaef63d8d16164a54425248f09d3831ea', + 63016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7616d381ea6aa470088d98192c618a0b5efcc67ec6cbf5da3427a0bfd3cd735a', + 63220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '932402b5a20843373b8f0a09dffd26989de134d49387352b66b093a3a5682d52', + 63096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f386558cfab8ed17a70ef34d4d884d98873cb3869c855471b44177cd6e28d42', + 63092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '367b0315723e7688218abcf9b1fc7de907331cc96cca1b101000fed9ba633ddb', + 63076, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97d8c00f38f80e7347dadc0db15b0323d389d2c8698b731300009cf55404746b', + 63008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6572f110f4b0b9546ffc361e46c0c8e6b1fb7bab6d3bc6fabb22fb06519c1f00', + 62908, + ), + }, + 'SonsieOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f2c995f35ad5a3b7ac79a038320eb9567923553b332a2e6e03b774a67ac435b0', + 70196, + ), + }, + 'Sora': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6dc531f0734bdada1cb501e549b593717bc35ddfbb171d5964fe057a4baf1c16', + 46164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b257a0df12c3d72374e3de3336b4abf41a26186f8c73e80999ea511b99a1a80e', + 46272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '861443f83a7064027723fdab9e5c67bdf0062722dec0e6620203d11f342d9a7f', + 46216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0b677402a4d21f526423f63592e44bd4c05b11327f6488489af48838c24466c', + 46016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db4f36ffce09bcf2c0e33eebfdbab6e59c97b7c7df9b4f45666bad7cff60d49f', + 46112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa22295bbcfa182d33a2546576373632c39b25b8164d24d58a0ea64f094f99ee', + 46192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8dd36675bfcb85eabfb2b51aee0c8b708edb18911b82cea93f36fe56e5396a0a', + 46128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43614ed07b3eb6008b6eb978688312cb962103b1a627153a4305bd1bcb256769', + 46204, + ), + }, + 'SortsMillGoudy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0720529a1a0f7640c832577151de5ef90baea23214f785f37ed7fb84c4dd24b3', + 77772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cf0bfbd9b704815e01309f86cf6e66673f5a665b24553ee1362511852c1ea578', + 88172, + ), + }, + 'SourGummy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '688829e5309e2ab7f5062ce3bb63bf47321dfa0ad67c0f04fd21c09483d80a6c', + 56684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a72ffcaacff0a927d572158af5aaa35c9f1d42613f6e351daa74de090eb50dd5', + 56888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afad497d162153db44bb20d7959c65fc80d1cddd6d43131436ac8e1819e8cfb5', + 56828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f671cd0c91501a89db98d40f5b8a19fe7fa269d6af195525d0fbc5a55ede5026', + 56804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2077f0f19bf5bd788100dd4c07066d86601bda44c7cc23ef5bff8f3314069b62', + 56832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '732748836427dceece30e68eb523972e59c4a305747b1b4d52364f602d5c2a1b', + 56884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9c5f2756edf75b92606b03bc139ebe763852f08f971c46a45a3350e3fa8148f5', + 56768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7782f867d16a1e946bf71f5d7a14ce10a0d74223661e43935eb41d37fea1804b', + 56840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4bb337934de3cd2d2a89c8c106b7622c628ddb796a1398beb913291e39cd5e12', + 56772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3fa80b5d3cdf935a330cd60f294b4a9649c86f377c8304a656fc2c4622b25e67', + 57172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f7aba2bd9aba39e7a6b1718ff24ce170c9aafa9fd9dae3a7d3ac2d837060fa32', + 57320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f85d2dc13d9d73fba0c33d1fc19dbf121ecf43f5c47afacd8e64f41f15f951de', + 57288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1b85a89e68174129fa932853ebaca1e0df744ded40aac6f088c1da9949f4d71', + 57196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '36635a845a3e69b6baa08d028df638063ba98bc355717153b742039c2e838905', + 57312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f0a78f2e15cff1ba9867dac4b1fe88f8df51b4a2c7ebed8556c8e3cf890ad4f2', + 57368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7ac148702582ad734aa2c755a754cf67e7f6247c727551a868bbb146bc72fd7d', + 57240, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a055c4813ead8f0bcd032bc1e9addb661b784b6341108340f4c16e6c8f79c426', + 57336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bac5d9f66d86494401928472dc6feba80a9cea0dc38b415341004c63a273a97b', + 57256, + ), + }, + 'SourceCodePro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '89fafa2f91cb1d6207208b006579e7a6bf3a8fa7c980d54d636e97bfb8cc69a4', + 120812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd5621c4e70e5f63adc269ca83f89102ec42edebc300b873670a232d1c057601', + 121192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e6886fe8f6509c3ed4106d7e5b83dc9620e0505397d46d4b4aa432ed0b08c84', + 121056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '71034cae055c34ebf3eb26011524bd4cbd46e97ecc3a2cdcc455d29c9afd7ab2', + 120864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d759fced8b9b63e0e0b59a4c6535993db356491a98d89608bb119a1f80b1013', + 120860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d1370b166a038fddd2a6e452e7b28fa3be7872519e2c2346785fbba993db827', + 120916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a38a413e89ae57760def25d37b189114e9c0564466add002e4556057a785613a', + 120948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '855d462d7e008b2c3a777795716fd6d78cf1b4d55b70473767eed43926e38b59', + 120456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4501dddd72705c3ef9213eaeb96495d7e71db6466c3bc9a483ba65282554c9bb', + 101668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '637279b2e9c1ca633a590561cd96754d14eb0d962df4f45aad7f56253416138d', + 101968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '83adb384c140d2dd206ce055381f57d9a3732e3e8409a1831523dda071dbf72a', + 101776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4be784b7d9053db0014d50cde21bced632b2a36bce4e487d69f00097c4b9dacf', + 101748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'be5e34a1e84ea7add3982ab01760a9ea6a0fa6bc9bfb267ed5a00e3614907f72', + 101740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a97facc841bbab86de8596157db1523256435c9605ccfe2870161352ddefbe56', + 101732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cdb3594a2736c4ea1bacf32de55fde645d36762ac8b786ef67660659291da3ae', + 101804, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7a75669d3e8aea35565e21580e480ef0bb31a36af89733413991d3d44ef1b082', + 101500, + ), + }, + 'SourceSans3': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8d500bdb030c5630dbbed4356e6ae0432532937e8376b8aad80b3d8f9471e65', + 233600, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd464a46952aea037c7075e3c44553056df69f58b2df55193a65c80f273bcc9ef', + 234580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f63ee6981c8ca18a461f39ca0475668d26f9897b064a33b7448a4352e3281edc', + 234684, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f709a664f7810c42bd46e595904bb44500b4272235a9143e43ec586a765450d4', + 234472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a57c67a03a8c195df35b4f2700f7b89b1888c6f4c313f0e9d1ddcc834b155727', + 234656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fdbb56eac55436884cba53b2b71658ae5c426d545619866108a580b8da808866', + 234616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1186628b8b13f3d725c21553067099801aaf6a8ec5e1b53905a48d1cd5d14f2e', + 234636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b737d23fb6df0119fbaf563c658b80e3050c1d86536a829b288cbecd67738bb', + 233588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '31d05c5ddc30028a2c5a3aa16d433cf6058d16025c9753fde48a8d7f9957a084', + 208336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad306c8e474caaf8f62e210c0a40c73a89b66dbca273ce2dd7809e09567db8f2', + 209504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f4088f7bd8d7073e254138de0f73f801d563076cf67fe2e8bfd68dd86d4a2114', + 209352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2ea875f303378defe47e29390d8e33d3a8ded5e366b6bcacb428b97a3406507c', + 209152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8362f21da6891c4a48209cf5e9cd435321520e08c1e0372b67f9bb7a49e1dab6', + 209312, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad43aaf7ece7db2d4f5b2d8cb15ec8c9280f431be4f2c945f3b10d4bc5b0272b', + 209332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '631998eb4dc0e4e148177dc5a46c408b8db74dceb3c37f3a54c7445702cb2ba1', + 209232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0506f2ce0c921668a975ef371774f8fafc45b9fb8a115f110639228db90836ed', + 207896, + ), + }, + 'SourceSerif4': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1e1cb39a0f56df4037e4bf42fa0b0e62501b3919e55ed92bf2d866811675734a', + 194332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c0d50db8e4146080cbf4bf37fffb23df859566cc7f2a03326586ecb9356130d', + 194484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '444d1df62a9693f8ff54dcb9fca4da2d4da7ccbce5c39c91644d0d983cf4cd0d', + 194440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bf8089ceff9125fe74e101b322c936bd3c66ed336f8f02cddcd978759153db8', + 194692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '532158a64c3ff8cf4c71ea05ac5bdd9d3a067287061634f513aab275af942db1', + 194776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb37bf8029423d8045d0f4d39730f68297ef7167d9510f0eca7d7c6c111bc40b', + 194736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0b91ff909f063d670aab6ac7d72c695d4c33ac7a95c7ed654795d2818d6b69d7', + 194772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8dabaeac0e9c871157516aec8c843beb7866aa9c7758ad0a1e84ec64829fb641', + 194696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ec86f6d8cdd83cd5b410d431b5a4ee2a8169fa9569e1a481adb40920208816c9', + 183548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e12ecc34a9d7e376966680b0b71143ec4e9ec3ac709cd2d7731b9ebd83a4af8f', + 183672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6f6fb5229f3c5356779bf1ea3d78847c640160b4a2dd94906543fb5b94a09d85', + 183528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5dd489c34d83c6a7114064d60854fe22a1abdf61014361552b1f1a4af76d49e6', + 183692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c99bd3c792cdafced334aeda139ff1962e58ca8c7d737f1982424f67fbd015d0', + 183664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '008a213805f8e07a048122272abf749ddd19518dd24013674b64d101f232e403', + 183624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6007b684c9e0e77bcfa9308e860ebba6871d75f58df5af43a69a210442a457af', + 183736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0ccc09292baf067c86fc11d015ddab0008b94a698b4ad1edffe17067ce408318', + 183704, + ), + }, + 'SpaceGrotesk': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd8943c197bcfbb835a8d002ef16d2b5bde4fb928ec8ab97f2ce7366c7a14339', + 69376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7821207a715952786271398700a0ffaf2dcad829090ab5bca09b9cab112fa8eb', + 69336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b997a6d2ee768c870c6d3e525a1ac21fd18402485181cc69de5b098341a1f47c', + 69392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc709777ca632c127616b1350e7d30103b0e897fd3d86741fa4344233315b32c', + 69332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22eb3cc87edf0bd73cd7b79336429dd0035eaf2c9a9fe83c6c7e11b825116926', + 69284, + ), + }, + 'SpaceMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9e28ce88420fcbccb074f652afc16c1d496f7aca31311964c6a30bbdd71e4a0', + 51364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7c275ff8b8edf521212d67092331ca9cee95b88858bef0271cdcb72e6d7ac674', + 57280, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9bc9f9da68e4f847e99faab84b9202aa74430a0955675dcf949b79a65257c368', + 50712, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2aadb3101629ed838f06620801061a873286ae60aa2d62298c603ac1d0769c07', + 53612, + ), + }, + 'SpecialElite': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '237e5646bbf5562a70e6cec5020bf4c5eb8473f90c2c0bd595bf501a2e28b3b1', + 150108, + ), + }, + 'SpecialGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a38a70e072941a1fac685b4c6848e6d524d0bafd1339976403146fac623aab17', + 75780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'beadaa81acd87b7e44ee8569f4be0e8e5e28aa070436d1cc7ba612f2e5eecde5', + 76276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43dd4dd79a37bd524559e6529e3d1c11349683c4c2aa7fc12ea644415f4c6b62', + 76364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ef937bc495c5862713d361129cff63c3d3199542c1249560f978513ff110b158', + 76124, + ), + }, + 'SpecialGothicCondensedOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a4064fd31d2532e97f779a1b92f7afaf79dbeb573866e53c893672bceefee16', + 67504, + ), + }, + 'SpecialGothicExpandedOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43b5bb59d513eb617672d9232965b8e5c132d0032d1ed48af0aca7310071f0d3', + 69352, + ), + }, + 'Spectral': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cc4e5c864abdfef386a878f67c991dccc3d89162cd5fb069f9d540e88c2b9422', + 122100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b6b3ea544454b4ed2cb7346816f1aa4c56e883f2326f609c112588e457bd4fba', + 130876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ee91d7ded90669d1d7ab04b1075682267c610ae048926dc66b878522840fdc4a', + 128752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e230b6ea00a319fd11c98ec3afa23e7afe80257fb5f0b20c45c808125c039e7', + 139716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92be75e9069665578801c3f732bb885378492365ce029d86685bc7409655016f', + 123696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '26fe75675d3b025baa51762bc48b1261b751b05ed6a7614e4d75746ce945d97b', + 134420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd568f40a47c6ead6e53662b585b52e01e17dc3c55dbe954029706aeb33abe2aa', + 129864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e2c72c7fb1a9f7482ed5d1b908f05cf2ecd69e6768125fb44521cf26e8261f84', + 139500, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eb3695a5584288731c91b5d64b29dfc82af6bdb9a5995cd53284a7c839aa09d5', + 129792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '82785bc5210fcd6ffa58d4022285ce56b6b12a53ef82291740ca15d90a62b72b', + 139452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62b19dd1e30a241639034c72f3b356dd119d76216c5167baaddf856f9f40b25d', + 129772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3bdd2f0bb460dd83ef70afd090b7cf0af8c224e26ccfc327f4be29315933cd00', + 139452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f400704b14aa9104eba2a40d775320d961afafa521faae53c6f9ede58d60283f', + 123408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '255a56cbb4973776d083eaa92bd6bb4e2b535f5fa1b1a6593b17e19c1f854317', + 131220, + ), + }, + 'SpectralSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7c02ca9ee914de70c806f5c40bbf11a5ee452de0412ed2f99f4a402e286fe7e9', + 167320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c0c588300c695d787324794fceb054a414fa0958e1426b537c3475c77c939bc', + 187700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ff61b159d27d8d7973097721b3e23b16e97b3b778915c82accceb0579fc7ab67', + 186752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2c8a72e4633b5ba328eb4ee3c570bc4777e1e8b1af017cda41a1c66eee0dcd78', + 201828, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2b5f0f3e11863e2ebcbdbcbcf162a346497fdeddf1ee15a73416cf45b591b607', + 178760, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0231cd44c8f589b5c75ae08ff910321a747765fdb1d6600a4c9cbbf50b8e7121', + 192028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c3a8e7b15e9bf512072278f89d114f042688a1b23eecb7616e281ac6704af9ba', + 189260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '85533e7fb60da68a315e201910650f960ea7c103229e17d77ef10583ac0a889f', + 201908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26343c9f6aad0abb80b397faabd923f472a97e83e404899303a6e8c4ecda35bb', + 189160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1c8f7f2f6b3132b1f18cbca3d9b87483ed2390b40e685dcacbe2115130e26dab', + 201896, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16dd09e69fb9e809e2280bc12b4ad4b6b33ecfef27faddfffe1366130a3f6ee1', + 189212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bd65a72ef3485433dca976bae6d1927fe2f81f171c7372286affb806536d468c', + 201980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '002cdcfc06767bfb15fbcc616dc18c223bfbf5f2b4c782ed7f2589b956f7706c', + 178656, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '65384b2126e4beb22b83d21a0b2b81b501af3e8f65665ea423d7e5de87cdf4f5', + 190928, + ), + }, + 'SpicyRice': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b32aec7a162c56cd024ebc5edd804b7540e985bb4fde0cd6db6a6108b98766bf', + 64692, + ), + }, + 'Spinnaker': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0af978a1c594e9e946a9d079c1a4af1ce888d06bbcb095cd9b822ae0ef39d142', + 19608, + ), + }, + 'Spirax': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fcdff832b173744e5c90cdabeb0a20a2f1b215b14d4b78978ddf7b38df922d63', + 46520, + ), + }, + 'Splash': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c38ce9bfe8fb7778fd95abfab2842dc088fee15404a0e080913cdf0985b985d4', + 781932, + ), + }, + 'SplineSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e7de4523250e69b9561adb4af8a54e7ec5f22d0d107dbf787a13ab322d3b6c0', + 51136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a8fc3d5e3dee81539792a2eebfb4c990ba7c8e642a3a448e8e431fb1f610cc3', + 51328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bb8db8ef6269b277381d862bd79ab28cc7139c6c79666ad9561c84e0aae78e2d', + 51308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d19a5083b390b493e51f6b15e53494ef3d025d1ac2ba0667501b5d7c271785d', + 51444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6386aed13c1db592810b93bf4a9def4d6356bd2d98245792ef3a15335a52d5b2', + 51444, + ), + }, + 'SplineSansMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1548cecf56187ba492511108321a326098c2df0aedb6e570e777ff2d557c0fff', + 37728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f7c5a9bd9235fba94e4742c38f266634641e130b70d220db2fec9c9d7fe0ba55', + 37756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bdafb3dc1928ff61f0a286dc95fc0bbc84c75b88aab593e6b0caa7985abe483a', + 37716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '896b15ef2a94d47f2d91e24e223fd9cc3ef9e28a96b17bdc9cfaa1e235854118', + 38024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5a86a71e6d912298520bc0d81daf2b08711e2a1a2280935788f6a3eebde5123a', + 38004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75b19fa0bdec69b21c7ddd2cb051bb4dd7df4d2d55a07328c7fad681283e7f36', + 37336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a36f994ede00aa902cf5b19ef169d07ec32fc53f8720e9f599ed8d637ed43455', + 37204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9cc1329126fd8f5f5cf1c4341dc750fd8d9318de4e155e38c75086c9213bdbf0', + 37256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '77cdeac23eb6658ab9341f1a9f24f070c65f6f39e22469a7f42fbc67f9054801', + 37460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '979697f3bfa5f2b4ed11a6e99e22eca98817dec02131993de0609cc00704a65d', + 37488, + ), + }, + 'SquadaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f526f16bed5b296a7bc2a0060a6827423b2e3a954be2ad2f3993b88915daeae6', + 17200, + ), + }, + 'SquarePeg': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03cb2d6e066acd962d6aa8aaa327bf8dacb27c987bcc558925a8513c9622202f', + 88908, + ), + }, + 'SreeKrushnadevaraya': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '31b77cfd21743eb6d51d63eed84a37ae9e376a3e3c32758315a346c47de5a9ac', + 405624, + ), + }, + 'Sriracha': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2abdfb413a84bb590f0ef33fd5d1f909101491d6ed38685da67943a2a5f3c5da', + 196204, + ), + }, + 'Srisakdi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e0dd029d5fd02816eaf0c0b09c6667b534d9c3fb9e86e655f1a8f136ac4130d', + 96348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10506c2a583c06b405b2c2b31afa5b0405b6600af3b9c76c0c74d71141949712', + 96188, + ), + }, + 'Staatliches': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1c82fa66aa28b7170f9e110b1e70c3f054f62ea32a9fa4753ab24843d292158', + 42164, + ), + }, + 'StackSansHeadline': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '062b6b9d20a5cdb1d60d5d3b6a84f5bf013c5cac9c608140bd4cc349984834c6', + 65200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46dfa7b79a3805f2046ef2c9702902467dfa36b18ce0c21f36f58dca0d0e6ce4', + 65296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8830feb569f59738ccf2ce891d2eb80f4c0a874452b4e5310bde02c01617414c', + 65252, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c0589b41d96657c4b20534cc9b8569b0676c10518ef2eaf987759270090370c', + 65220, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '22d19c094c3df806b4bba7ca2918c16f4d8c405505ea65126161226585577664', + 65288, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a5eef8de335f2e1ee3babf6ed8d0f578189b9e3e77e0573bba2c36488a8a0f57', + 65060, + ), + }, + 'StackSansNotch': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '79f8d85b3deae233db7226ebc13f016000216056e00b87a7453efa3afe5c042e', + 65568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5d346f96f7901fabba1d43e8b2bf8efc0393074afb65f1f9827b2f4959a8d16c', + 65668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '788622688c3f56611c6b527335b4b45f7f1ccfa10385f1dd572b53fc7c83ba4c', + 65636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '84d62cadd82ea02cc0321921e2488c234123a66f6bc3f161607c7bc80808839a', + 65604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e203736700d426cd6cb7a7a8a4eeac00842fa8f64c46f059c8544e05744bbe7e', + 65664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '733a3b168f8343402f2c12b0fc771d1af352b91a5d324718bfe5e7d3df18643e', + 65448, + ), + }, + 'StackSansText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3510dd76eb460ca3f8be4c769446c27a6a8f7d9c5744257717f1772411b4a201', + 65176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec6b4ae278905e401389d077b3cb97339ea930530331979fe651eb3c82a4058f', + 65272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8775abf97396debc8aa79a1b32c8446ce96618c654d380b2711f159f20f1e03b', + 65256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c5445a90d8a52a5a4ef29653470278839d195acc7d61b2ca1d711b0ea806f641', + 65236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5627704c88227ff538fccc522b9b56b24bc974be344d407541a5947808badbef', + 65300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b392b9118341c2393657d61ecf1d983c94f71abe8bce98a7a87f2fdffa577b38', + 65080, + ), + }, + 'Stalemate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c100775bc3fe733ef4ef381c8e050e30aae846d86cb93270e9218e8423ccda6f', + 71200, + ), + }, + 'StalinistOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '98e18e4854d8430e2c89e895474cc8aec3b39b7df2959df9d7c6da7ceb2371ee', + 28864, + ), + }, + 'StardosStencil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f36d178fe86ede4b4236dc32256e0c39b00c9de99db521edb78736e37a853dba', + 42388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3af5016db7cfe1b84326a7f95fdd0ced69e486d50e472e4e7a80befbce89ff92', + 33020, + ), + }, + 'Stick': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36c7c860510b6825eeff39799c9d7efcee6959dee98f37f63164deb47260dcef', + 2043668, + ), + }, + 'StickNoBills': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '21eb9de1dce9e2ad5e0bbb55b0f6153b529ffe3966c68ef35bdad8817eab5f81', + 162984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd76685be17abe287740061e193adc814aa76e47c6f9cb22584867ee429cb2de2', + 163180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac5e279a9a56027fb2753ff702ae2e98ce099f2c72dcd99f4faa5acd7ef44086', + 163108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd52422e44b28ab0996a98f1b219d15ded5bfca8b3aa70587b0bc7c33739a2509', + 163132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd16e0a4cf2419c40522136acbf3b0481ddb2131abc5aa98f6f5fc409662f21cc', + 163080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e49a9667f22e049b39b51be0afffb3533d95a05f450b545d5bdfab896c965f10', + 163008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8c0f95a248233e4592bab9786a8897f2a230f5bfa1b4bf910d89e5fe9a01ead', + 162680, + ), + }, + 'StintUltraCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33e87c795dcf22facc78395cc64bdf93722636fbb6da07d61486390c68283537', + 36956, + ), + }, + 'StintUltraExpanded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8070a8192a0152ec0a966e30f3b860106fd2d9942ecc873c6e8d7b3a410b014c', + 39000, + ), + }, + 'Stoke': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '058ae822e2391cbafdd147c6ec7d223061dbe3e4f9f79bf2b8b3cb8db8c3a8f2', + 47324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80f4c7e15765824a9bb575ae5024766dc62cd6b1a4d21a220d2a4d16175e60a3', + 49124, + ), + }, + 'StoryScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9e6b973f764c2f1bc3a82855f8c2babfa2976047f5e761e215ee6ccb21bb178', + 71260, + ), + }, + 'Strait': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '19b14892572f56e1ef219a0f471cbf96c01c70112a8ed36f46c2c436f169dd8b', + 38616, + ), + }, + 'StyleScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dcced6f78e604e9c42ed2e4f81de5a62dc275c83506bae7f1067fd02e569eb0d', + 93416, + ), + }, + 'Stylish': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b136e43fc7597c5c758cad6f875c91ddfc0513ed5c18f1217dab7ca9f45acdd', + 6162664, + ), + }, + 'SueEllenFrancisco': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85181a84047b5825f7519f48a0bf4eff375a91a3273e3734c03034bd5eba29cf', + 38452, + ), + }, + 'SuezOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a8cfff9d5bafdd90950fa451e59214d82e2e908490bf06dceecb1cfff99b1af', + 63020, + ), + }, + 'SulphurPoint': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87bc11a73ff1fbac689043334a0f6e890d0d4093842e48267f0f5dc2600e882f', + 36536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '115dc8c9a9090d7a27c41084ac14e3d060cb9a298cdd5fe70ae01e919d6fc772', + 34424, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5822e7db7610cc19e7a9af7fe3abdcac0b08bd5f64aef598977cad72e8d01c49', + 36196, + ), + }, + 'Sumana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '849f684eeabbcf45611ca0078247121cc9bff11572c002cc4ff9b04042d61592', + 129900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a6bf873e94ef749ca5f54ae31af1e1f4c19ea535a6be9ad8fad1faca6cd07933', + 127732, + ), + }, + 'Sunflower': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e02235d4975ffffccc84960795e6e2ced319a51673d3aca633f6727cb5ef037', + 352904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '796345d5fa846a7810f9f54374d41902b0982db9d0b704b20550ff8eb7747a69', + 341128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f1008ad967420669d0007dd70b88c59b195c23e32753614c2fdbfe3cd99528ff', + 347780, + ), + }, + 'Sunshiney': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '340a040155260d2c6c13405367407afba0f4e8823b92c82b7dd09f7d73c42e58', + 158216, + ), + }, + 'SupermercadoOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '023770a0efe041f50dcf3f16e8d3b23dcb3b45b70a140058dfa6cdcdd38f1b9c', + 74196, + ), + }, + 'Sura': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd9f9ba02d52ff32486116bdcff81404de5e347a887fc6ec22e08a24e1624ef09', + 96908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '226020841a8951aff5fe07ef05a32dc8a1e495ab82bc07a24b81a7352e392626', + 97028, + ), + }, + 'Suranna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a161386aff36edc625ac9acf87e518a359f4573b5f13e32b8b987734e04ce0f', + 383156, + ), + }, + 'Suravaram': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87aec163700b4226a5af18bc2ebfa1059fdc7b81cf6a986d9efbe811090b1df9', + 182608, + ), + }, + 'Suwannaphum': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e7cc477b84d36c3a1e6172d80243b6999b1f1f25ee5675c32c4b0cea03f6c3a6', + 62484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2054f20811d48442cb78df9b02f04c09b4dd384400a65ce6777f8c1b16143836', + 57836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '63fe48864b1887b1c0b381a26ca55d880febbe7563c7019cd4136856ee618aad', + 56856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '380cedf0bb7a1b00dd8ca65683925042a85bd4086bfd59bb068952b8771a9be7', + 55720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23726f1af1a12bbc901785c052ec43c38d6ad63dda299b559fd5bc3db358f1fa', + 54828, + ), + }, + 'SwankyandMooMoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bedfe23a19d8f6b557b2a0115a161f93091acdeb8b786a76b6a97952a647d934', + 44244, + ), + }, + 'Syncopate': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '299a8b368a6ed8298f0c9a66139e4a5fc6a101d1b57f89a28bb1570fdba8a84f', + 35164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1338d03efb29aec8902ddfc714a23cfbf8d830a0306d9c99086107a3723b99e8', + 32604, + ), + }, + 'Syne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '983107572e1646d09011c2def734f0a474e6581be58b108b990dd3e3778e4ba9', + 52344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f61a775ccdb2f2423f227b419b770b52e5834febb55bfb00d09bb3352b0ae7f9', + 52616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4337f1ac1c242d4f3ea63a9f9811332fbf83a871bf4671c9067ee5b25f89b64', + 52736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7679471e4e72c5d211e45cba0cf39b9b56df08efd758de71fe110c1185ce3e0', + 52708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a362f62b01c4c950b67906ed009e9a5bd2491590063e31e97d7e10f503904f4', + 52844, + ), + }, + 'SyneMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3663842ea5d37c4a687919ffb6345dd43efaa671844617f0db72a583d3bf012a', + 35168, + ), + }, + 'SyneTactile': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '445243c624029325dc5517416d2e9a1112090e77be370c66d11ed5776360cec1', + 86184, + ), + }, + 'TASAExplorer': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '85cb14f675ff405fa5b335ec9efbc2f1f1698a093336974f237fe658735ee9c9', + 92088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7a197482cb8677a20aa7746336b656d88ca93083e7c398b81c71fffa589a71fa', + 92144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ccb0ba7428850fc4e134a94b31fe777ed1f000fefbbf66f0fc4ce989c77a19c9', + 92176, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0e5fd60555a8d74fa7ab3efbcdec4a47c6777e39f36630cc2d327af13fe5897', + 92072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5e8e51836b44d06d2826c43433a7abd6d2fa8be43f74ee3319ffb1416a4e5ab5', + 93012, + ), + }, + 'TASAOrbiter': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4a16eebabb60db2bcc21e37c44418c98456d10ba280c2c1522f1497eb26a724', + 93820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11636f9238a0f89ebe3b6c7509d68c0f4f504a1a661267b3f7c226a3889613af', + 93976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '057e44fda3cae68d04d965ab73400a6984b64d9f3285ea2e6c3c9da952cacadb', + 93968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42cf6f148e899884797cc1dc41ef19219f71fc2ca43598efdc5fd396a238df26', + 93860, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c0cdb36a360ca31c0f6e409f21c54022077daacd19d0222ad50666228abb07da', + 94848, + ), + }, + 'TacOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7aa586ffeaa8475c3d3554a697a8b8bbe7e764ae2523277bb1392bd2ac802bb5', + 102404, + ), + }, + 'Tagesschrift': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87373dde7b1aab15706eefcb3cf48488a80d9e944338a33ab578811d7a1ee81b', + 94280, + ), + }, + 'TaiHeritagePro': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4cb28ee1f62d20533dda12607c7f5eddf2df77696704b2adcad40d7d76e1b95', + 106972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b9a0873f28d7f3ff6d3423fe46b929e89a2d736d5fcf5541b594d49680fa9e5a', + 103692, + ), + }, + 'Tajawal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc516596a1005864f152ee9a662bf5a969459e95ec64f33a578079767fba455e', + 51364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5cb76e36373af584f159e4563ada1a7b07d7eb2bbfceaf71be44922a8ff9d9d1', + 56216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f8ad36b1b008a576a65aaf0bb3ea8bfdd942febb4ffcca0e57ce7f5b9a90b77', + 55044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd8a9ab68a3320642cb98281e4756f600055580b1ec4094acbfbd8272a750ffe9', + 56256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99a1bea52e36adeeb4f48ddd2cc9fa56636030ffdbb263986aaf463ec097b6d6', + 55492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c18c89bb420b8e9da7b13712ede9e5d8c722d19cfc0aba265528ff15a9d4a9c', + 55216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de092986d5ea6013ea2636deac31fd11c7e10131e28ef46f411d5f3882be1987', + 54644, + ), + }, + 'Tangerine': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0f87c58eaea278e34f7cd1f2a3e4f36b76c3fca7623d8e5a62f22b446f26ed7', + 38872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8fef8e40830d9f675e4dad7ca110732d7bd6eb6b3551c93a2f759c91cddd6714', + 38760, + ), + }, + 'Tapestry': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '54d08700d8905ce06b37df3464f1d1e96cbc02a7ff85290e543e3eb87e422285', + 93304, + ), + }, + 'Taprom': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae2b8a0a25ab02a91e706b58f4e7b03e639fcc0777966f1fe440ee60ced61e96', + 152916, + ), + }, + 'Tauri': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42e05701e3a401923993286a45bb28e99b6a55b793c677ce846783c96ef4439c', + 22396, + ), + }, + 'Taviraj': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c235d67df750d2131e1e8765ddbd9356359dcce416462abbde4da09343eff993', + 121120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b4c570ce9ff32521739f61882b0bb0a4cd51581b9438b0dfc60a6af8c685d8ea', + 134768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15f067a3c5283ab372813485ec3f9bc1f45530b5b4e087990b416be27b31062e', + 121048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ced2d0587b40d00e009b060ad927b4056a6461f383221042fca48db6bc65fc3c', + 135428, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a4bc7396e04f6a3c19746f751d18ce0dfb5d0fe2b8de7de61f055fcc1075d22', + 120532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b6b0837c8cc99356ce6036ce9f478a7f736c1590b7b808fe966f523fccab5455', + 135464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f3bb2dda0ee2d87686846d380a18214195bbf75f704e6faf028c52a5254cd449', + 121308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00b884788518d3d68a7600b503638faebabf096ef7c93060552f03e132e8d539', + 135232, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '68ca517dad8ad3f920c1b7f0708e1546aa39a2710340987e12a916860092de36', + 120460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '717a30b1154af73fd8d926c3b167b4a53eee1494436d15f056b2c128cfbfd981', + 136224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0bed4e1e828576ade6ffca8d0fbb37417c04e5985921f9a9420e23ca8a0c8130', + 120184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d93dfca6dba86b83ad95bde9250c8650bfd099ee15645a4e0b2413b82458675', + 134776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9de0ae137acaa445e1c1f9a7eba4635e466c4564275610c7549f8472dbfb561', + 119372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '962268bc49c9e7b11b2ff24cdb099e2d95a935d616f42bbaacb31dcb85af937a', + 134564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0bd52df7867ce685eb0b45899a1f51cc088e2d1483ee822929888b3718f837e', + 119284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b0cfb61092f2d17c18522a2cc19cc4c37c3f5f30985c4c270c2639590b01b1c8', + 133664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'adde3df74a51bc10ff0429af154fd90ff393b721f1f67cb7caed54916ac33e0f', + 118736, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1f6043e4b6474d116031080f756667e9c9c8c761b7207faf0703972919f7b56', + 129244, + ), + }, + 'Teachers': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e36d767907f71b35fb86874c563093f5e3c01d68a2086331bf6083dfaf79b1c1', + 30664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b3b4f878b7c8f5acb13aa4fe6a65e6ad77cda1a81dc98ec2c69ac1af31c1bf4', + 30748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f11e8d08270b82fe70f1ab0fefcbd27fb0a90513dd83407ba81ad58f53ce9fc', + 30732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46b3803504a157d9d46294487fe36e3f84ec29d6dee1e09776ba5f57f1138852', + 30628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '11261a77b4297d0bd59e8b058bb47ce51aeaf0236bebec78c537b5cfc00e863c', + 30716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad0f6ec0b3e9da4676d346185ca12edd5894cacbb1e279709537a9c7d6821e1e', + 31616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ab752f683f89b25b55e3d72795df409a4fdbc59d95e1ad53a9113f27b6846b41', + 31740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '08b09edf5c27bd0f0422853de5a25c8a0d5308b3cf6e5cfbf8fd81d06c625f84', + 31728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5f7989a5b279fb164ca9b9a5513c0b458bc3b0b0832411a52b3d8e0a227a01d2', + 31604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dc42993d1ef697641a118f972d55789fe4338eb4aa5e07d328e96a8a92bdb0a9', + 31736, + ), + }, + 'Teko': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a28e480429f546d7b533ff41a71dcc829787223adb914dc79680de47416018c', + 153112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fef304f9337a0e58e188021f641b98b19a74b0f2557b0c0fb5e1b3fa8842b799', + 153748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76fd3a5f7f0bd9eebe3fb0c3e64921f19c0c980326ef77e9b0033146661f611b', + 153744, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b13366f5fe9f5e12372eb2e8f0ff8efa108719b051696cd497c2ef174f1093a5', + 153952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81a9580b9ee15cafb8b0772c73e801aa78ead5b2fd5c2b9e6ee19b9eccf4cf44', + 153920, + ), + }, + 'Tektur': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d867d5a25da9f4c49921e61ea217d2da809c216e7059cab50ea517acc338dd7', + 67208, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0a274202bd5327913f0bf8748d2a7abb404bd8cf6e47b027aa4da4ebb544bb9a', + 67772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d08942ffd4b1106e2077711abdec10818882cf07c11e0c6d394d093ee3be527', + 67620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a90b5eecb0ffb979c32b3c80083061c1c2767bdcc0810ee8623ad185b79243ee', + 67416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd67b96ad1431e0e1bb646c2cdc3c6aec037cd898a0da670a51308db9bd9769b9', + 67404, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3227618ccb0a282fb74d5e0582c76a8f4da695f89ae982fe032b3ec1ab21764c', + 66468, + ), + }, + 'Telex': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e01d140b7b35960037349299a257564d659efc55e49114e43748b5bbbcf2a9eb', + 22952, + ), + }, + 'TenaliRamakrishna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3943805cb815fe549a9d5a1a3480095ad0cdfcbbb71b9cf83073edd3f6602830', + 431736, + ), + }, + 'TenorSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '503532a3b2dc8da27144e129a1fdd193cc1a5cb5f5afc8651b4b1b811b72ab0a', + 58944, + ), + }, + 'TextMeOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '959812e0a8f25a959c4520fe3c6870c2c3363b025c019a5f22dd8eff445194a5', + 35128, + ), + }, + 'Texturina': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f5c076d9990028b56e6985ce7778f5051d25ccafd04167cd12e08be26ea1df1', + 83592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3abaa9317f504a439085d2c343f3615aed63af8e9e8c71a42ed5dfc4d57fd2f9', + 83676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4ae9e91728a17dfc5629cbc23ec3198f3029f384c5c9c9129c561c5b34aed25', + 83624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '55e1f530777e7c9a94a4e1643fc202e74af6ef68567cbcaa32343c39478bace9', + 83576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0e955a65654518be8eae37ff6d7c6e06882f6af1a58e5c2e83d5b93e72cf3c90', + 83632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ecfeccaca2b3f485dd47ebef6f6a73092b5cee3a826908e1ca15d6e6c5860cb7', + 83548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce56cf42d0597002f14ab61fb042a930940dc7f422bb53d34e39ac23b553f5e4', + 83536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f79debfb301861f82cbe34c16d950131eb11613f2a89b4dccf9e12efb4800fa8', + 83516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8d1efc50b4dd7ba257b29fcd8a044573f78f460c253159e75a4b3ea3d16f6697', + 83496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6ce2198ad976d5d20abb097637d0160168b352e8a7a1b11e581702240cf726d8', + 84148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '69c615d56898decd5baff1f8d9a9d1f9882c828a0929df9f8c7ef6839c862b12', + 84200, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '07ede18f16cbb06927234849258768f0f5bff5a4ffdf1d814473bf5d75391b73', + 84064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9eb8fb6786f987c8f21be85b50765f607f566da864719a5e03050612c6b9f712', + 83960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8694a004284764f73c133165b318a6bad5602e50c52e7fac3ac6576c07c05b8d', + 84084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '06f3a3831764afa4f46daec69e459eecf6e3ae294e6f7e8c70309cfa6a786091', + 84132, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9a838ba04ef4b5a39f7f0e636eaca4f492f8d0535686d2fe0d09640425ceb46e', + 84088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '145e5f687b59e5d4138055d2a72e42211326ba93d9f6b57f83c5d02e26d2ca32', + 84172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2801cd7d75c41425bf4eb55562455ad07344aed01792011e7c3bdbffb1ff586e', + 84200, + ), + }, + 'Thasadith': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddcc33ef3365032efefa3a90f19caddfe7e7ec246fc980e481172866accb0175', + 86292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd9d461efb5edcd3c9a1f67987c97de38e3c7f38c39fdd4047de2cbe0cfd5ad4e', + 89272, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43c1ab5d214070c92fcb663c018afc77a041d234cfa7252093bbfe3a868eb13e', + 86644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0dcfbd35ab6de2b9047e13d3ac60da7186e6f85d62646722108fae18d84c5c1c', + 89652, + ), + }, + 'TheGirlNextDoor': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9aca5d26f2c0bdd184c4c078eba162b127f74cb3f4cef19d2e46948728cbe865', + 42040, + ), + }, + 'TheNautigal': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e7eaad77e6e7fe7bc7e23825fa4d10828619f80a1c5e8f0df7ff2d211efa046', + 108576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '770d0c44a0e73f1b5ac064ea4cf2902de7b42c70eecde7554832802fa0fbd38d', + 108036, + ), + }, + 'Tienne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7b15145d8375aa0ff37b1ce4ab2b23ad8f62a18d280bd31814f139ec394ab7a8', + 39320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '100422d7165a535435f818bc7263e5b2ffc8b3241614a33d6e03dbdfa7641fc1', + 37376, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57ff4c087a3a40194f31aa33dd7f4b9bdbf2a83a573a5229ce31a1012c6ca526', + 33700, + ), + }, + 'TikTokSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b401c329578dbb081c2b7e18bf4f9de763c14e28c83569d77f1db5f3f3c6344a', + 149768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afda2513b343e31026f535b4935f1dedae4ef73c733e47f542f1d89bdb1ef6a7', + 150184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3c30a36808c82db61273fe2ce6fbb1d1c4023929affcb308c4b78a38b839cd13', + 150152, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a1a54fb4ab926521d76111afa346e64794f5ff1c92efd996130ee8b30ffa3c4d', + 151340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3df9dd38a506384294efe55c73d17c4b1e4fd48de5b2532782918d8ca1e59941', + 151236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fe7735f6bdaab41f271b3a9cc0a0f41786931600ead1f4ee39de2d02e51476b', + 151348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'edfd86ac426704aff93479aee0403e450cc7c57f750708878faf0575ed690ae0', + 151336, + ), + }, + 'Tillana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd5b2376543d7551015429fac5d8cd14badf67be99d2fedbed742f731e9cb3384', + 216284, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2459b6344c675b3cf815145e282683e4ca3b72a70bf66a12f58fb0e39a836ac0', + 220652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '88559f4a3f8244821708f9805f933cd600fff453b12a9908dafac3c12bbed83a', + 221392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b52ac2b03b0dd5b896ef4cdcd0e4337b282f5e5a79d6243a82c1bd3a50269196', + 220924, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ffb7907b587a4f00479512373bb87e891ba26e080b6473cc1c2f03a6acb7411f', + 221112, + ), + }, + 'TiltNeon': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e61328500904dcde68508873f20dcc614ee00af98ff8580ff5ff6651c461fa09', + 89348, + ), + }, + 'TiltPrism': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '529da4d79bfcc56197c7a3ca84fbe043fb0289865f6ab12358eaeaf82011015d', + 174756, + ), + }, + 'TiltWarp': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87d9bc13d526bf2486164ba4cc00e87f5b17e9e19ad77dc151a32c7ee1786302', + 59624, + ), + }, + 'Timmana': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c897b9a5b133f2fe95726e4f41e11c69eac214b051fee53ac012499e15601fe6', + 431972, + ), + }, + 'Tinos': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df4e6faba144e4b6fd2a2a430ec0bffac995643c9b3d5cb2cea7f787ef9d38f6', + 246568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'de220106b59f860a63161eb8673415646c443a21100f128d4da49d2523b8b23b', + 248184, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '523b94f559bfb2c2901d8a8de0c7ff99a39a2a645cf838846c4283869f629058', + 240620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f00068187ba4a04adbf0006088448cf804eadec37d9374ddd63822d0f044fa5d', + 246184, + ), + }, + 'Tiny5': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f04e9245d5909c7bd2b7276fea75dfd4bbfe2ce2d2dd89e8a9495a7d5432dac4', + 74284, + ), + }, + 'TiroBangla': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bb112fe0b99f59a55ea20409d2a2139151881033562ccfa9ebb12cc8c09970a', + 193128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '85c804ae6757832bb60c86dddb0ea08524558dc077631a0a60443be724d238f8', + 197520, + ), + }, + 'TiroDevanagariHindi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '79f9b78b96c3d89b3f45803facad00dc5cf7a958e433f03aa0b2dc34dfa1846d', + 250692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0504e39af7e5ed18179046973556aa791a247ba24f0851a26da501144dcaf4f0', + 253924, + ), + }, + 'TiroDevanagariMarathi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a0c2ac07584ef3e1bd3b08a3f609e89e64a9eec24307e69df956c2024312262', + 249320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e047c3da37621e0d6f74d12aad194f6ae81741ef61c3db9a9a587348c099412a', + 252588, + ), + }, + 'TiroDevanagariSanskrit': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '052519e5e106e8076839f1f9a188de11e0b651456882c00287124a36fb453327', + 429356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e2f99cde582e8da3ee4d3d868c8c2bda946b80cac43d29bff8d5d6a9790f82f9', + 434360, + ), + }, + 'TiroGurmukhi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '530b5e3b59e5e96f1eb00dd80f3c721ec7b7bc86410e84111d6751b2ca49e9f2', + 86168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8921dc96a6f8f39787c4b2fa08c9fa414785e0732f88f7385a4005c85abae73a', + 87292, + ), + }, + 'TiroKannada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5b4a800e61db5c515c013e87667fdf5b612fa26efe1d5d3a82a8d92dd0e304e', + 278956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'da7d1a133cb1067623fe388dd7618834d4725ce9b2bc067b556ab48e67fee713', + 281068, + ), + }, + 'TiroTamil': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06ba99cbdd2f252cefac5fcbc4a05cf8f07bbb4d4b229f0d22814f98e21dffa3', + 106120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '62f9ece04edcf2a0e2320971f5b3f919a2845878bb16f441b9717f464e28f3cd', + 107380, + ), + }, + 'TiroTelugu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9aeb5fe6b5d101a3f2480e8097d0431b134f1502385bd0f648b3564b4a3ef4c6', + 395380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70ed1c0fe4f8b128b26bda89ad0c94f13ff87f15180904d5c43505770d88b937', + 392340, + ), + }, + 'Tirra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '685718f19c936c87b6131c8f83ca239f3f426285cf909c8d3437f9506fcf6c01', + 39724, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b36e3d8f8096df646174575bf4a6203b354135fd9864442d46a552e6fd4cb9be', + 39624, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'abb679e73ce8c37fb96db6561fe2ae06b999f53ecb724a6828bcc0caf5403084', + 39644, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f515a819e2fb0c8e9792fddc7ce91f28140e573d59e3a9016165815d8a67a44a', + 39528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48f8b52f7a94e2ac70da894e4be5d5c046d4c86b24d9b0a6322fadd84017660c', + 39748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '086279117ed04beaca51ac094363355564034e4de046c4d91f3445973c7191ac', + 39896, + ), + }, + 'TitanOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eaa4a405303f96202b92489b5a90f4b2c514f18e0dfe23cf5a8438c61ddc0a28', + 52164, + ), + }, + 'TitilliumWeb': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f5156ef72655bd0bb8342cf72f97b438b909ce0786c89368e161a7a7a5044c4', + 53388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b41863786cea354768a8bcf909bc028ccec3d5a74df4d3ab6d0257779919a3f3', + 57408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b63490b0fdfb1181c49745d5831f4b7cd645c351dc8dbaafffc68e9134faef1c', + 54196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '586a6cfba3fbefe5d8f9ffa237794e5a0358cb85036494872529385c7b88ac39', + 60640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c196e3a2de40c8f653836ef77179ffef571e576c230e6248ffbf412c00cdc5d3', + 53956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '20f3207fa3d400e32bb447e04cdb48313338de297689ecc7c5bf5cff91f97e85', + 61348, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '378363163026e95ad98b248e883c8e0e8a97278f4660b2395d96c938fa11d550', + 53224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '58aae33f96dfa11f7820390b1a3401e2437156bb8166f0ab9148acb7d4caf230', + 60880, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f6044af66f6f8dacfde724d1661e5d7c1d6b22067e5f5e0936c1b949e20b7c1', + 51392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6108cbde308a768e16ed5cc7f7fa347e258a66ec46e4ec107bfff9bb17a53e6e', + 59216, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '33f76afabea23790ba345a416e412c3c74a4c05db5d20ac2586533b47a687ebc', + 41708, + ), + }, + 'Tomorrow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd94286b8362ac88860a4a603907c08dfdeafbc87cff6a4989e2e11e28a44944f', + 54872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7ca9ddcfdebe54d8ee90d67999db09e82cf38f9cc1bfbbb106cd4855bf762779', + 58008, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0eddea348a21377de5aa3f1ad845606d0299c713410bfb5b01bbd931ed2ad0f6', + 56872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e3febb56ec4d9b712a2500f799f867c2391f00dbf82be024402ee68bd324017a', + 58892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf8107dbc76e0f80a866cacdb2eda10f9c5bc11d497ea4a1186f5f7d4d3273b3', + 56908, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c8ab1559e00cc9ac646d94feb8b789c79fa1fce5251a82cd4c0662b013fee78', + 58928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '10adac585bdd25230122215e9e7f3c23a68778d1c877f6ca704930d07e7030e4', + 56716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fa27248044f9d3a94642f1d31f739971ed24de35375b61e8021d2a398ec71166', + 58568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02cbd339877852e985e5632512ffb042bac1804b6be624cc6f61ca300b3fa98e', + 56172, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '02f72a223861ad7c0184d03b68e3d36cb525343213856efb54868f7b0b4f7291', + 58112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6507457f6d860844cf41a1f0ebc31407e0136f09ae784368555037ab16faa12c', + 56784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6da621f920fc203b9945c78a110b39e0abc9d9a2ffdd5fc56fd48882347e4f99', + 59016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c8ae635abc44fa69fc19535be28dd61b8fb5eca2becd195cabc1b9337ea773e8', + 55956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '93d696363750e9c0297e5c8963a97dce03d4666b4bf9b74b11df5cd07029fc27', + 58964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f9f3ad38a3331fe33fe1f4c92c3fb900900a94a103cb806ca20b38f41ac9a93', + 56584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '357641739a9189feb2d9f86f9742b653e406489e7667ef6d0757f4106c17d673', + 59704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6167bcf6cb970075ad030fe3f7360756ed7d219989464deaece8b32142ec34bc', + 52332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ee0aa43e390403b1895be7365b58fa1d21c981c619df9fe46ac246e91e22ba62', + 55780, + ), + }, + 'Tourney': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '28975d2f7a4dd4e371ce49132f58b86bec9e81265a3ec72e4750d63b09ea5e85', + 61996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42028af52a7ac2a5a51a19e8b45e15fb897be9d8093506fdbd3f8ec73784561c', + 61996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7de2d88511f3c3bfafe3b51fa354eb1cc3acb4bb9aeed569a44c111a30ed4917', + 61976, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4ce090aacf3eb33962222789617886ecda478055662e9a0f8179f8786a658d06', + 61984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a2079b7eed5f6147f671b0aa8da77995803ae85737438d496dddbcebefa5686f', + 62000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f76d2ffdc1199a7b40a9adbf2edca73a2a111d168115dd54be978e83b3c5948b', + 62020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14fbb8bd38ff938932bad9087e395a01fc1df895f6c3e970c4a16049b00d012b', + 61972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '464d975b42abdd509c109a3c9efac23289fd1787e939538f7ecf2582340592a7', + 62100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '223c5ec51df759b344114220fe5a7b45913716df8214fb2ec9e6cac2a0b25543', + 61640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1e3fa68977693ca71a0051a9e1d751bd3d8d063ffb21fe41ca457bda648dfdcb', + 64620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70617be54354f0d66bb3699628e6ab1167fd5b3afe112fbee79e6752044b7e29', + 64716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '620be77da3f45e76ac747605d15949f991716b6f9f6ef17fb139c8b73ce41d08', + 64652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dabbb7fb22d24310acced36e0045d4f77c57c84638af0737bbb9b21dd0e323d6', + 64576, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '024936663e6d8fbcf7f216668358de3a39991e2dd49c83ccdd2b8e4c446c2cc8', + 64676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6056ff0186b36a6e761c05cb5253d6483433b522891bc2e2de3fc3d7e5b46965', + 64692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a36121be15fb2f950961d3164b21a2da7f854dfedbe8a980b10bf901b610c4a4', + 64620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '77bb5b9a65b4fc1aaadea2f1a8c59f749b4c2a08ce2952bc9c7eb74b45012b24', + 64748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f995f8492c6f78fd055eee073ec85d72385884306bf71aa3fb6bc0417bbcaa6', + 64112, + ), + }, + 'TradeWinds': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '763b7e06cdf78ce8c74390273afe4d50d7ed241799ac330641343c71554bab64', + 83508, + ), + }, + 'TrainOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bee75a11bdc8903173c1827b121f69847f98ff13829c95110342a6d8ef17fd14', + 1945656, + ), + }, + 'Triodion': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e06dc9b7d1879df50bd56835d206be068c1c785314a9b51c71394fe91d2cd68b', + 117496, + ), + }, + 'Trirong': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b70c497193f211aeaa449c0f8e88b91389ac33dc5c30d61d961426e2333ccfd6', + 114784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef4d3745bea259cb738a06d439e2cbb7b44138516dc07470b2731c18b93c26bd', + 129296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5fd71235d4d5cbfaaf9769081f251787193b1f6fcf7cf9a460f82b66eb65bae3', + 114832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75424f3630a8bbd6276c6868e3de00e80d9d0074c5fe592f7229f8c9ed61b2cb', + 130660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03b8619acb82ad072a0dd64921d3992a2b6be44d1825c06b2c572cf70567b83b', + 115836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b635783e3b733d7928b473e369278d4eede7ebc7e0dcf66a33c1a8878d54276a', + 130640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ec0188813e5eb57d4ddfd0fb0f7308a0d2d6ec78cd28129384cf95a378ebd6b9', + 116096, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3ab8f99425589bbb96043d4dccbf0cf2f6f6f8545a4bea4525e192148fe0331f', + 132696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddb7f49d41e1e912b0fd25de00887f7fdd91d478fd6f770c4b6bfaca0d36a4fa', + 116388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '37a646c814469f85e077ea3c0b97a81f13d4257350c3bf9173583dce61413703', + 129380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8c07945b6b3a893482cb80fb7af2692708571ee011b2e89c77192181ca110e6', + 116124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8c4404912d4ba11cc99dd7194c2388c0cba32a87e36cfec97b626a827bbcee67', + 129528, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '906a2f9bf7f58a4d796d11d69b5665021748b14755bc6fa5139da5125abb6a6b', + 116276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd1bceb1de3d844afa043c58bb97779582398eee6e8a88714ece49a2eb9a69135', + 133164, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d76a0f4f823729fc9abc94656338cb285cb8d1f5532f6a0ef867ac78a6fbcfe', + 116140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f350248e73418bc4ab4705611a3b5cb25415485c42d422ab41609a63172affe', + 132628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '50937be8e1637589ed595eaa698f43a1191201adfd8e2707c2ec34214e32d54c', + 116124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '521b80e200a756bae2db43e394c8c394872b995c7a422050999a79fb309d09b9', + 132888, + ), + }, + 'Trispace': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '880c4bee4ba70f7e56adeca16399a9ef6daedde03ffbb9fb6e5a3c43a0742daf', + 59608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '449cce05ee7043dc7a42849db30edf9997b81bcb77d5195e0ea876cd112ab25f', + 59764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b85914da5ad2d1ef2d5d71fba6bb8307426ffc6adcaecf5d25b1f579b0b69f51', + 59764, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2ef7a9c58c61bd71190dbc7c8f8a630305c0b88b6aca2ed62ef946fc1f7a4198', + 59728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cab23421ad3163144f48ada57bbc7264c02c8f96ae4a6279a48062fba634cf74', + 59808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0930caa550a8d3793f1066583688bf858ecb37dfcc97a9c0806145933957e990', + 59992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18007603540befca89505d775e070eab989b7c94ab1a3c813029d6ddb403e358', + 60084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8b3915d8de2f6d5145ce837576818e3787acc542dfe32f3345a598246c7029c4', + 60344, + ), + }, + 'Trocchi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6c41774f6fda78003e0a88e9fcf54f19cbb8b27f724abcec2b06b0648bfb84f', + 41384, + ), + }, + 'Trochut': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c44ed0f6a6bf8d9d3685dbe5003565259286e390d5d75d618a9d91705e5d8499', + 23156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '59451bbebd50a021e0f8b48428256ae2da59f53edfcda1edb450c54173a73ff5', + 25740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81857a7c6609a2ecaec06ab5143d19a72d96520f07cb8109f2df4cc5082bb2cf', + 23104, + ), + }, + 'Truculenta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '560e145192e329ca68cada0175885607d97fa83e2c4b892d42f09bb245148378', + 126276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd78c1fce994b607ea35e5c1512485f72963e9f47eab3a537d38c90b5e7cad2fe', + 126508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '185875e4a23af7194f377abe4f20f75f84e88873aa66db2cac2fd0ca1ae20fee', + 126520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '409795865745ba602404d9edc0cdce6842deee7c5dab36a1cdbb1a4490852db0', + 126000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14104e8e60b003df198fbd5eb17c0d40931abdfaca784ab4c1f9aef54ddf272c', + 126720, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '03bf9a6539c0e6001d3491d0e86b0fbf90d892fa6f0ae1664e73229e933b912d', + 130444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87fc39b77f039ce223235364e04790520f7a7932b6f6fc8b344ab594e717ae7c', + 130444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '26f0f240bd4441986aa8c4b1da7d2afb3edc0308f0e524628d862ebe7e426802', + 130596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de493306dabf4f2a527028de8dbb0816af5a61debd35c4c587970a0064f92cc8', + 130556, + ), + }, + 'Trykker': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fe6792a932d78afd2b42037428ec42f6f507134a19e367a2bc7b6720d68b258', + 35524, + ), + }, + 'TsukimiRounded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6afc2082dad5690d177ad020a0508bb746d0047d72fc2312dc8491f54e03f254', + 66748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de13f42527a698bdf88b4305d2891b17357b54711740e30ce83c83f43045441b', + 67628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0fea97b638af980c25f2644b3254730c13c2cb54774fa35fa42768123caa3912', + 67728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fd6d379ffd5642e25b9b34693bff628221affd41e65d4a6fa5a3868c5e00e803', + 67568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c689c1f4ad958ef65f2f5f8ad8bd7029ed30a6e7eff5646241524dc0d4e1fe98', + 67344, + ), + }, + 'Tuffy': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '29335d199f86237aab39551e7549a86e4f947beeabd3255bc531e408bf9dbe26', + 137168, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dfa05f39d77a1d33094760831c3b6fca0835f75711f176290934c885c4af916d', + 224700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97f9b4142c106f3057ed4eaf94cb6b4d29a4dd8ec79d6056afd7105461adffeb', + 90904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '294ccffb6fc87627f90763e954a8b4a4eede5f8afd293cfc13d0f8f2050c5946', + 108608, + ), + }, + 'TulpenOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '344cffefebb2c0b7ca02b719f3f5b1bcf352962db77da90a900d47f4f1df2dcf', + 33488, + ), + }, + 'TurretRoad': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dd41a5fe6261feeee83519ec9441eec70303a4c0c19f292198e1e3b34a5da51e', + 31780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fb452fc09e47e992bc96fe1a470ce2460943633bf1d46ac61539f4a40c094010', + 31532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '796291f2de8707d36b1796577d589e8d58680c0d1d013d0b2397f41f5de9fd95', + 31676, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '69c49148679eddabe0b53127ef09e04967d524d9621e05cd0be6f2437c59094d', + 31584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cbce42fa4affa6932b52cf1f920593cbe3201c689b41316383df369e0e27cb0c', + 30892, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'eabc29f72bb682df39964c73202a3bf3813c825fc2aa889a68841b71d5483e87', + 31544, + ), + }, + 'TwinkleStar': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5f7a8bf13b79bdf89d7c9cf06f119b595a1800ded228ce5d05bee96b16477d47', + 120636, + ), + }, + 'Ubuntu': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f2804d1a5f8d647632b36b491b1b0bd6668ee257e9d6824091a25494e165d3b', + 146020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '612d6db190dd1516afc59cb977fe481d3947f85d9dc04fe3d504aea7a5e50a86', + 162320, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6285ab870bf5db696b40c769ee13fea8f70dacbfbdc2e830b53fd80013f706fd', + 154556, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ce07ded2e7175b6dccbc9cb59e30e861144f1a27e85f95f319959cb5b61aaa44', + 158108, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '977af058daaedc2afe461c0959877e8d82d09c30ab8e7de5a7d44e9dfe45fee6', + 153792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7fc166d0cd0d4c1c25d235b5e83c7449b1271335b3c9af6d0cbb975649715e95', + 159520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0d612b1276f7396e9e2f13ef8e51061a2e8ded7b1841153f344ce612ead4a5d', + 153668, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5bc1dd88fb03f0705f6b15238e6f721cb6cf15d6d8622059792c52e1aab048d7', + 169348, + ), + }, + 'UbuntuCondensed': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c24ec01f725ecd735832ac7b044b0f2e11f9e32e0d43dc251ed19dce1e937f9e', + 164608, + ), + }, + 'UbuntuMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '78f0e98c9013a285561af8018ff090e9536f9cb0977464ecf0a117a66423d97e', + 98028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '540117820bd0ee5e3019a08e6f987766aec0fbd040bd92413dcb2c3ed677ad6a', + 102844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'efa8334b43a090218e12b7084b2b7f1d076d4a0e19b93fcdf9ab18cc37fb08dc', + 96904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0422cea66b5b06d5963351f52c43d01dfdc889a545e122abcfe9726e4aca8fca', + 102172, + ), + }, + 'UbuntuSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '488eb1e55b028e87dfc0b69f80c7d56de0235b6934045e11fdf361965f983104', + 231332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a12c41504acd3dc3ed60262c6f89958cb7072ea706a544956e42a0a360b62f37', + 231704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dcde0d047cc78faeeafd93a2b7f6d5ca03895b24f6b3862fbf0e2c26cdbaf95', + 231532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ed5b1918e7276ed7f49118bc8c5b7ccc6aa200ae3c164f2579cf404da83209db', + 231476, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6283085bdaacfacf01444d50279ae01d548378eec20bcb5b1d7b849f05dc0c8', + 231596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c61673b21f3feb4136a4517e24b708830f093ff1461bb3388259b3d2d87e362', + 231700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9e7d960d7bb767fc71f24b2fadae456e1d9ac524a80b450e524c5c6338bdb318', + 231620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6efd83ea835b02b03360411df23f929b056d1911cde67293ee16eb3bb71b7edb', + 231692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '44ff51e6230fc77cc83d9372187100baa18bbacb7998a01ec57a331448e3ee4a', + 247536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ae38e945274675b6054625a116522feca2620f5a003479c62cc6da3a356541f5', + 247788, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4855d04a534e30c2173196bf593719d7b20266ee910a0d2301d8f29ee5b13c65', + 247816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c038d4449ee797524f44201173d6fd02d8f60669aa8b8f0494cc735ac2bd874b', + 247592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '865524f46f3a5907163702980f529e4aa1f3798f804ccb088953442729ab5d05', + 247852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9360eae0530195e1b09e6b4bcff79f3acc3f2620e928022acc2e80ed12936959', + 247884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '80faeced19aacbdbf1494696be927803d9fe04a87afd22a3de9f153e5f18e37a', + 247848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0d5ff7e2396e0b21caf2c02b785dff70eeb9e333d4b70fe91d2895f0f2d7e0ab', + 247912, + ), + }, + 'UbuntuSansMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44ae840b720f3e95bb69bd2449082c72d90272356c78fdbb5721b3ff5a6a97cc', + 111100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '46ab71e7ebab7516438f265d25c1c6084ec116cff1aad24afea1422a9e5b7ba3', + 111160, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a13175b837a6e9f77c7b9be8b4a77ba7bbc039d5535d9d2768bb0a050018e84', + 111156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5224a9bb27672470392ad5693ffe40f876408fc46ff7eea839c0b9e8ab9f144e', + 110672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b14f0b3b545240386bab1ad28b993d68f1c0aa27098185c50ada7533e9f349dd', + 114212, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ccb0866ed261b703fc6d4df8a8d8fa990cedb3ef5649630a563d4b63f6d1c3b3', + 114352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '12b9aa6477f74260d5d0ab35cd4289652ab60b666165c81ebdce14ba641e81e6', + 114328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a28c516b044902577d4dfd449666ed7cae623f4101840acb970fe2d464ce4fdc', + 114048, + ), + }, + 'Uchen': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b027e7e8a92c6e91d64a5d8dc7140dbbebf3d593ea25e842bff2d7b819a0e0f', + 800904, + ), + }, + 'Ultra': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d0a479473d9890ce8b799f899645a3dba6c0c3c327891994b25d8a7f1ba3c75', + 50392, + ), + }, + 'Unbounded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '497cb8a47d2711702f541eda75e9fb8c90dad9e58547a2c43ee0bd9074f45679', + 342020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6b1db982f80381d5dd1cd60dc1e0005e0c2a7fc3d568bf0c6ed5304de130e560', + 344636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '20e6e53c7cf98a32d5ded33f0686aedb0277d9d9848b07fa9fbbd36c0d81196c', + 343580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '314e1adba3af7ce9aade1b71eb829c82f6c147278c9ae653b7626738669d6744', + 347324, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c99ca5d18d2c820da22d50fefd8c4d84f7e09804df68d07a45fe1ec6c34332d4', + 348084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '99704d87abeeeef1b1e02ad2dfdc6bb83cdc14f73952aa546c368e2bfd2ed81d', + 349224, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f638ea95e79264d56159d158d6dc60dc0821e95ed9e3146a83ac73c98737d622', + 399752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b0e4f26479f435b2b37e0f39eb1f1c2716607b8646c599b3d9bbe78cad682012', + 395768, + ), + }, + 'UncialAntiqua': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '478ce8b6dd748189cafaabcb3eccbf1a46bd6f432fb0a1818e41958994dc789b', + 60628, + ), + }, + 'Underdog': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a7abc36e556f51243d974e19fe54e10f906e8d222f060dc1678e58264a2a4498', + 43728, + ), + }, + 'UnicaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0da0ecc528783f38f68696d7d743a826e038006beda25374f33b33a31765cba0', + 49836, + ), + }, + 'UnifrakturCook': { + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1afa20b47835b72c9aa4a77763cbd6fbebb470d04a70e34f6259e1445639d5e0', + 35640, + ), + }, + 'UnifrakturMaguntia': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '77773983d9e3c4662fda43de043b8bcec9ce14ad5bc6cbad30ded723c1e465db', + 56692, + ), + }, + 'Unkempt': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'df4edcc76ad350db9c2ccd534d5baec191b4ab9952102d416821aa1e377092ba', + 190356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8c28bec2588dbdd2cf0468c9c5ccca5dbeafa95048486049ee871a2b74ef6ee', + 188712, + ), + }, + 'Unlock': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '818cdfd15e25877c6b11856a25fcbd8b0c14d0c88e58b08827e378c298306904', + 34852, + ), + }, + 'Unna': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e0bd31fc3cd967f6c1621d02c3ad0079113c3bdd87f52cf093f2a45edad47983', + 37964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8e1ae73e6bf7f8c03a7647fc1e3fc83918735ec2c00f8ada3ccb8c10eb83f151', + 43884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e48cad3cba7e2a4265d7d66944fe41ac5af13303df1bf350fd6af9539967ffe', + 38572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5cc871447f42211cfb6f8230387b9d14d42145186a734e03ade260bc14e6626b', + 44840, + ), + }, + 'UoqMunThenKhung': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41a06f47469d7271b522e55bfd856f4a8f16ad389268cb6e7d9e34248dc56fa6', + 4604336, + ), + }, + 'Updock': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75bf1d7bcb49fb3b66ba6c07eaadcff362231954e07a19793c928b52806d091f', + 75500, + ), + }, + 'Urbanist': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '043d93a931d7addb0105074928f8efc22e46403f7460b6a09a04aa38d436e2aa', + 40916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fab0f7a07b44182289f512a801298be086bfd8462296fcff4cd4d05bb8382e4b', + 41140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '259ea695e963d1770ca162c5b512405d84a9cc38198cf81adcb5718a87e5e02d', + 41104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17fe7c4425e801dc48e71d19532fd5d0527fe4a9b23d526e317de449838acae2', + 41036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '45262ab4e6354de92e1767a4cf8f0cc6ac88d4008df9a2674bfc94fc8ba144de', + 41092, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '807a373c51e09595a7f4a344d72524e3bd1095f68388ea4fafd9f365b4f1207d', + 41084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5881fa2cc5eebeb8ccd275b3e7f3c6d8ff5927fad387bd33377ac1c0fd058292', + 40960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '35ebd7c6f33035236411bf12597cf0bdb841ff1eed6fe4d586ec844204d43dde', + 41256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c589be13644a7ebf5ae682550a332a9fba387a709b01fdbf5ece8a84e6cabf7e', + 41124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ef916df0e264ffd647ba899ba1774d177b17efa67826899406b01b2104859a36', + 41884, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '38115e0af4dba8c0d10a333e491e2b3d5512f0c95ccd00d1552b27efe5f83925', + 42144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6ddb7e15e525b1ee04d62c0b8a1ed397142494de62d74efd02b1aa708a64c1ab', + 42072, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ab6745d7d7c21d614d829ed9ecafb9dc0fe27f141fbef67da4a06a4d3484d656', + 41996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a44d76e9177a560169b66d70b9fddc38667a10df01061f8f4496a4778d569f51', + 42104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6375c3431e95e992091c7495d580b82d801c6800e1252e15690b54c455abeb9d', + 42120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '788b0e1efa930158c70d94595df1468dc21404b434e7d219488af73c9f28384e', + 41916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3e7b846a7fa49eb07998acbd809b1d379fd942bf79c3afa789a458200b671a71', + 42244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1a7260ed2508da15352365a2e855c4ffe6dba4acb152c648c6cf9f31f25063f3', + 42104, + ), + }, + 'VT323': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1d7ad6de24e00f076169958eae710039209abef79e4541bfcb0d943629711d2', + 102780, + ), + }, + 'VampiroOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c736e9489541fc817a69dae868e5853f9bf17e485d5bb186e63f0bcacc18617f', + 20340, + ), + }, + 'Varela': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb79a7b87a892749d4a149bfe99d523d29e25ab807f0079b8d1f338f07e1c62d', + 59496, + ), + }, + 'VarelaRound': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4d9abc7ad5732086863229ee4b7e38cea9186798c4e10a6c11170df5cde62aa4', + 97980, + ), + }, + 'Varta': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce211c5bfb38cbc298d05bdb44c1a4c044c5cb0fd3b3467be410c2446d292e4e', + 65188, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2c78ff0065e31bd0ea65bb6e0cab8b52dea796bc961ebd499eaa40d5e499da18', + 65080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '605b3af877ed9a7f1bcfa08f6a0abff7bab8707616ecccdb3c6402c2f8039860', + 65180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b906bcfe98147ea6ba3cbadde79dc90532a322a2260003986f7fa4fbdb5b50ad', + 65156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ac7e5c6d0c6462e41cd53725537ac503e3212b7ea63140add4f6fcc12811b126', + 64956, + ), + }, + 'VastShadow': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd043bcb9908c0ffb2bc8d12f862a146d623a1bde4292674a76e9b0df3bafdadb', + 58360, + ), + }, + 'Vazirmatn': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4453366bf075b860218d4b209030845996c119030fa0ff15b7ff0153a9e97518', + 104372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4f6b39ac6fbcd8031fd5ce771b64ba41788d17747b33ccfd7577938bdaab3ea2', + 104680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3f019117186e8411b599fb93a47f0d0ff9042f36195ebd3ea6f3306fcef513ce', + 104636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '12a299964ceaa501f06a913c52799cbd5a1bd97e989c1ecdc375a1d2fa5e2466', + 104616, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41f9ef4632bd730d98acad7e0f95194fb1cb9dd51e8224727179846168b2b7c0', + 104700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2175f0231d968b027aa4f7423b5bff555b4a1d89160e82d2d3249d29dc4d3e73', + 104844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '40ffe54ed4163d251634e8cfef50f0eee571e0a4657ced12588148c99767fcf4', + 105204, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6c73f1289af59b3085e02a25e77c43b646bbbb9963d9cab67d816de95abd9e79', + 105380, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5988777b032798a770ee0cde7621494e64dd69ca7b2f0351cd71c051b83df6b1', + 105400, + ), + }, + 'VendSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4da151ad9f816f847ce16ca5a96ef43a0ac4bd56d80ed0567294dbe556d7adbd', + 62124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f04369ffda6e2c6cb0acef4f2a2a592e0aabb32ae97a6ddb123621849c0214a1', + 62116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c198318f5dab0675b3a1e89a91f21f54d9511c19c4dfa9b4009a2546850f4578', + 62340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e35922afd99168bbdd10b42760408aa88b55266297ddf6ec074d8bd9e35d5a8a', + 62340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'af0d2e7b536208c618f5b9b2dd61c1ab6c0d976a0c5591d0e8b70df308860e47', + 62192, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '00ce2735c5f33b9f3d36aeaedccc28cce4d04d2b216e16c9bc6b71155d738c2e', + 69980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ab990b5f11e0763f95c4a4f55969f6735045ce064c8a94ac11a768315ae30fd3', + 69848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '076008120a74f45b4dc25e671ab17dd51b7bd3c93c9f3bf7462c356655914ae1', + 69984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fdc74eed41210f81cf3faefdf2705a9413e81705e8a20cf9b1dad8fb6699f805', + 70036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '216dca4e47f8c00981dfdedbab3d0f8970ebca933f47daf9c2582077466ef25c', + 70036, + ), + }, + 'VesperLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70c8bb2fb59b37b442a4387e9fafffd6e67b86b98b20b867fbcea7ddaf79c2b9', + 161640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '013f1feee34b3c5ead250d802cdd4b4a5c99f1144eff88634c96e378c968ae05', + 163912, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '41e88308b40f8d2d67eac5f036f823cf97bd08c970946cf18e6b4314cd68652c', + 163772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '763864bb78db132e3f7740379da30da12242ff70a23f761325676da529e6e5b8', + 161856, + ), + }, + 'ViaodaLibre': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4f29c65db5a76a32dc57b080eeb9ad721ca3817bdf5d87f3dff0231a9f6eb12', + 104232, + ), + }, + 'Vibes': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8bbfe0318d7d948d317d2943374c84b7d5f26c64e295de289ca1660e4bd11fef', + 49956, + ), + }, + 'Vibur': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '39a1c22f9bcd79a7b0e600737132d58c388f9afbb78249210029b333e48285de', + 60568, + ), + }, + 'VictorMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '18b5d02af1d860afad0d8b753e470f7679b3d01a094b0c565ca31a89964bcb07', + 131336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '27038a77e02bf14cb15dd9921922a5bc548b0a8c88385e9efde9feafcbb953f8', + 131632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '65bc9efbf56ad1feaf799384cb9e9130f3e708e7a0e486dc959324354867b416', + 131660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '314826591fb181ee5236636add4f5fea1c9a966c6b54e3e95c7f0c3855a4d7e7', + 131620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1d4f2d1d5c9f632d0f4a1cb0e741628f138393fec2bb490e26671740129f3a2e', + 131632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f5d21eb861967e5d0b05b9e24acd29c227dd4cde768d7146ece898c5cee8bdd4', + 131520, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '81d1a84d18035a90db7a8eb854f2e663b8c05b6e8702b4540468a7e5ffcc1114', + 131344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '227fc9dc7d65500577e25cd2ce9121743bee365ef64acff5e5a93b60351bc021', + 160648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b398fed7b71c64ec5065d42c26f5c9948fd2e341c3d6a888bf812658b02e4cc7', + 161032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c42f9301fc0a2a471bd3f09027e60568a58322da6926a1715d09b0f6d18577f0', + 161180, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ff88441e2f31b69bb6f40a631eb178a1f1a9b3e8ce768798a1ba33c26d4df079', + 161144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'dea29e2910d4c73750e61fc1644a488a67febee501152b5ba0428a56119819c7', + 161308, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e4c06e02155feaf62b6ca44ccc350a5ae974dc2b908dd116b5b4d7dc6eb8f3b7', + 161276, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '04601ce5dc8030bf4ef4ccee1b536df2f392e2b107497515dcd4c8c75df261a5', + 160964, + ), + }, + 'Vidaloka': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b4b54332fe43122e8bfbe74eb150dcda4d794ed3554af94ee92c9ce8c19c29c5', + 37520, + ), + }, + 'Viga': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ad850cc0e5ab4b457f7beab3e92a7b3c8af68747acc617f66ba4963f2e293b5f', + 25000, + ), + }, + 'VinaSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2db2d998af37c759cd6e298367e3619d4b5ddab3c3cf227a1fbc500b54927d37', + 42772, + ), + }, + 'Voces': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a60ebcb2eb175a13b0a603bc6d82597439d1539487c82c852c27d4a7f86e8fb9', + 73856, + ), + }, + 'Volkhov': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c57ac75c241013d94fb7431b8e65cfc2d9b5a8bd1c263a370f3b70333325908c', + 31508, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'db1015ce0dad710a9d52b9baf2fbf8f91bfd85b4b243ce152c3ad87b3bc5bdbc', + 32420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '127762cf6393a05555d9a9e6aec693efe96c478b17a1fda924cbbfa96c4743fe', + 31436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'eaaa3259a1a9da11aff8c11c7aaf67e401c71899275e23281fe12f2d7a3d518a', + 33948, + ), + }, + 'Vollkorn': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a19da8671610691b5336b5489c05c05f72235481afc2e652b99217254290eb2a', + 228832, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dba10f0e59fca8062121d756291a1c5b78a96bc8ea4ef3901c4e3741d1d28e0b', + 230292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd7c0f76cbb12c5bf19fd52d411771c7cf84a7c99d41bf6e9de93c6f00ba124a9', + 230356, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '209ce322e35af883a4daba31ce56d6873a720bcd57aad09459d519389d53f0c1', + 231048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9eea70e3ccbc8912210d1e6522a2359ac864adabd1bf14eb50a30dba936e0fd', + 231776, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fbdf85930a27e49f2f06f0e6e734d1a55e7c1d7dc2e92358d5a22d0c8ce01a89', + 231444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6912231fccb7c4b856d4f74b9aad4afd3efc38c9790ffd0bf2494a47a3e00e3d', + 225960, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e7c76a9a6ef9382e97c0f1006bc74f3b156c9d198e70133935d0d15573cf94d4', + 226648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e4186a05992f941991725a13bccdd883d79fb0bb23495eb25a460de80efa746d', + 226728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '72c1120130869c2e483fa8e4d90f42d7235aafa3018698baba4af3e3a336ae7e', + 227524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '090a5b04b6c901a48c377eabe9a37f9ef551deacc6582e0c5e1c223aafbbabf8', + 228080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '39578441644f2840924e50445ec06f47007a86b7775a20ee53a117c2a75ddec6', + 227860, + ), + }, + 'VollkornSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '716e676162b7e46b00ea777d358eb21173f2dc35b1461cd6afd3fd48131316a0', + 126336, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '810ac32e5257b4f4f90c090a5a743ff8222299888364ded2a7a95f9d984b98d4', + 128420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e82d969d463d116820345efbd38e8ea82a27e1e0ebea709ceccc0ddebe65a39', + 128596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2400aaeb929bec9559eee7cf9c9e29020769356113ad868fa773ab8fdf1a24ea', + 127828, + ), + }, + 'Voltaire': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f7eabfaaf1511f97145e74e643557c5b4c9e168f2809708eefdc758bdc33d1b', + 263700, + ), + }, + 'VujahdayScript': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '943fece8cf3d384275f315a74bffe070d7b5616c0d7d7c0d842571f84a6b29b9', + 151768, + ), + }, + 'WDXLLubrifontJPN': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2a2245010a73fb620e4e4c34518c9160b4ccefdf6332b6ac3925af8e7edad095', + 10261348, + ), + }, + 'WDXLLubrifontSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a39da3d4f7a0a429f94dd7baf8e67f7d67520676b74c0dc0af6733663448e669', + 10236616, + ), + }, + 'WDXLLubrifontTC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '70ccefb3a722fb239a249ac98d94ec6b1574781cba085de95eb6d583fc8ffb97', + 10237236, + ), + }, + 'WaitingfortheSunrise': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6deb7c8add2991efb92b567a02210a32276681a0b5096332e10db1c2ce94a82', + 41060, + ), + }, + 'Wallpoet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '08fecbc09fa8527a56ca70f96b3ceb76f3bc08d5b72355fa97d15c6c6b3a705a', + 20940, + ), + }, + 'WalterTurncoat': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7f9834777b9e5cf317e2f519588876c466c838631f603e27b0151560e7b06d40', + 151812, + ), + }, + 'Warnes': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a621574e98d376252aee36a7c95afb432bc3f807e4d11b6bd66270b9d8b603c9', + 45216, + ), + }, + 'WaterBrush': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bbcde3b759882dbfca6e53efcbdad7c5697ee5d12061c4cca98913ead3f3c74f', + 237016, + ), + }, + 'Waterfall': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ecb135a7101b8f49aedd75c7546c6f83b20c280f5f34d61e372ccde4dc9603b', + 138024, + ), + }, + 'Wavefont': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd0cc7facc2c2bdbcb4dc5729301c50b6211a2309e55fb8c2aea409895032ff5a', + 30104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8dcae630556ee9f85ac8c754c52ba916ae973b44846b4855e59b1be5114f445c', + 30408, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9a0c8fa25f70156eef84013cd9be3714eb273f1566c6b558c2829f5e121eaed8', + 30540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4201cafdde090ca0b9adf07b24605e1280a1832ec00da7030f868d42f1fa0a0b', + 30780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'db1735c3501cade8c8d2a5a7c7cca2e37d6b227a6af0c2b6655ab71c112b0c29', + 30980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b8ec79df7d918d4462c28e2a3c33a3313e6c38860bb7b24378be317283c13e36', + 31260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c4b535b4518ad87df6a0bc23d71290c2d8c0ee90d32a675512c4102737730c93', + 31364, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '44fae1d3badfac65ccaec7bb0a4800af9f3369da8a285d3deaf07cc934bb50cf', + 31696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8dbdd4de5f3908c9a960d635f0b64574bd205e0bc2b3f30e7e9cd1f87a43cf76', + 31856, + ), + }, + 'Wellfleet': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f946bb26765cf986cbeb53e945fe051c63bb44ba8b1f3cbfab4e0e85f0f1e2d3', + 77544, + ), + }, + 'WendyOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8060a04d16597d47480194de94a665dc025abbd8dbf8eb82280b474884d7259a', + 21064, + ), + }, + 'Whisper': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f0c49fc9fe213de9f76da57ab3882cda7f2c771b17283568948dbbef81d9c88e', + 85764, + ), + }, + 'WindSong': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '76a1f46e54685c9a44d7cf5ea2f97ae55c8bffb2fc14498c90eb39cb0ced84e7', + 102256, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'afb700b6aed6499d7cf488c7ff5bfec86ed612013fd27c536a24d095fc9dd902', + 109364, + ), + }, + 'WinkyRough': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '883140eddd25def63bc5d5fb082b7cf0896af8e7c11e36c052121acee8d4c465', + 121432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa5192bb34b83fc7a1d27c28b971b92e68a77ccdffba9d1b74a6b7e3b2529528', + 121120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3167ba90914f3173a4974b9e1c8f782b4d5173fc1f783e2010813efbb6335bb7', + 119388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cf4ab4293f650906d94e80b9ecdad91f2f1c63de615f3f29a46d45211deb7512', + 117900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a82f4cc59fd15399f4e84b03e5d64faf5d139e99eb5769be4716a8d9caf9b178', + 117516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3ee3d1da7368a714d6449cb3cbfed5aaff160cdd0ffe7a3a31f8f39ddbfb780f', + 118596, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '49a244921494de353382b110fea3457e57b38170d838cef2e5e2ba27bed87512', + 120016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '20cac8068bd7ef8241f0ba3d2c8c6e22d99a7b031abd6abb4e25f5c1d52db84c', + 121444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '92a1b055ac0cbe51fbf01019129b5d575bc99ac23d8bc84b10f7f01a13bad7dc', + 121244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '832d4cc7b3af4baa2d76edeaba1a13143f557204da07c81e5c7e9d841d972aed', + 119440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '01c8b8367ac550626eca47f1b970190e4ae4fca9b974e6c117bbc07f898cf06a', + 118016, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b5fbae9d4af384000c35fa23a4866ef6d8ae3e9ea4dc3d590f89db138074e879', + 117564, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7f321a2c05687295d94e499ea92f09cda7647e5d73392a10194521de57a4e56e', + 118844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bee958c3be1c408067d77120f0dd7c01d91ff7c557133e49c6b9ba84a668c787', + 120528, + ), + }, + 'WinkySans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25d76c12e7ae2ef47775cb558228f22567f61577fc61307b208121de9482e5b3', + 45672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a99df3c8f9f93655eb830d7e3ceb61ccd30d8f6b00e1970ef93cef1478aefcb4', + 45472, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6ddc659276bc48794c7c6976dc40f71a8dfd0e46606f28bb3f9ee8a7350297a9', + 45808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f939ccc5a51979e8c7128ad9b0c1a9591ac7dc3dac60f9e22f4b142d79003054', + 45900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9aa08c581d2e82890c530a9f6a4a7be0e0cf365a7371c778e604817c9ae91328', + 45768, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f350291878036fcdca5d255c4a45d4d920805ee3638355499674eb1b09774d66', + 45920, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '56bf1c0152228e48ef70698ad93e9446e541153d5bca762cc99fb89b03c78d37', + 45784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5baa7c3f805ad7339a8eb9ca0ba29df9e5863ec75c464da3fa672976e50d9bb7', + 46840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5cff1407731f85f034b0c197ba9a02cb6f95bb906d7a70b2f600415b564e7089', + 46620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4ad11ce0042eb3be47164aa4ed5e5d58b6404a395d455ff2c3850d13f7e6a00f', + 46952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '660cd0b8d4ddc7500f5b3e31713373962856b3b898eeae0a9e64b4a19f91ee64', + 46992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e2ada6608a004ced516ec7d0246cd54a59e81ca7463352c9c09dd2b155f6d1fe', + 46840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c02c7c0f0689d723c9239980019047784ba92f267c3ab9f7aefaba3229cbc370', + 47036, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b2d7833a0a6d2eebc974fa64bdc1dabbed379dc1b647efbaa44a60e411e86006', + 46924, + ), + }, + 'WireOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5ae3f6da3031a2c4c124c9a743d75a08b3dfccb4aaca3e57793927efc448dde', + 31832, + ), + }, + 'Wittgenstein': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e809181bda250bddf271f7555cacc57f437e7644b48b0d975587952a5d70ee0', + 68196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd449db2cf9ee537944146ed2755bcda8a8b8a688026839e80fab2c1550c25a3c', + 68384, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23a1bdeeffde6bd9cf519c2746728d530a161d3faa314929ab14c069e625c7cb', + 68368, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea85b308046bd65b0d7ca6f976a862e749d9dcb7b46a6782d5a58bc191767739', + 68296, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3436a7ea7704850e0dd477f204425e227fefbdb811d75800ca877e4da9fcd01', + 68344, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ac645c23d410e97b8500e4b431bff288c38c4a7f26f97edda922f259ad94d0d', + 68024, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd336202665297bbcd04dc55547aaceda72ef7ddd786cfe24d105ab47f1fd82e9', + 61436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a5d264f1d1d6e8b800d5f50b142ef98e92944a2633519d395b8ee82f900f592', + 61692, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c9f9ac7c497db3a5205ed350ba460135cfac7f20467eff826b8f54e800681f3b', + 61672, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3af0d3f356a515be037f48cc4474a9f55d6fc6f02b4e2f7771f651174290e77c', + 61540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cc2a9615e6652c241ebcb261b6f2b0f26bce5c2bc7df4c1e538ddb751e7e0d2b', + 61660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '70f6ae9854685b5e10aa2e9e41e6ac9fb5e2987cf0e3a86b67ebedca1ce3c602', + 61536, + ), + }, + 'WixMadeforDisplay': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '16f1d552e920bf51fcd35cffc5bf659966c35a2fa0f64ae6861ae3e503a421b4', + 83700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '495a9d96ea856d6403de5ac285694be8b3846f96e9a768e60ff098b188bcca3b', + 83812, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8cd6e4b67332b54f08e86cbc1e7df5a0dcfb0b60957289845258acc3131310a7', + 83808, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a340271f3590eb9507b9e1baf7395e01f9cd204ff082fb59cbc3700e92d4787f', + 83756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '25219be9ef07505d0d2afd09be28a6a68cd4ff9b90e40cf79a287801045bd75b', + 83840, + ), + }, + 'WixMadeforText': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fa48d9c7933fbd62c2beba5e99179c25a93bb0aca142c7a1226e4be8799c2f6d', + 79648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c9c2b39e1a217b9bb505ed77f1f77f0049faf47d63e8f4b2b2a28c568996a31b', + 45304, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a8cd85ecd6a3eda3df1a09e7dbeac059ec2d801898b143f87f4ae8a94bda6691', + 80372, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c08e694d88261a1e544eeb899f94a8e4247885ff47a1d9cf98719c593029bf52', + 46932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3fb612f7e30ec83275920b38df80bf1cbc9a8b1e04176ac5f169d833aa41afd5', + 80452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1a3834d3fefba2ab73c5104fa82c02089bdfe7a8ee2fe125f8ef6e451414e456', + 46948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '64739f8acca73357bc383de27559ce0b3a30507327388e2320f6d8fa2bfe3266', + 80416, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '96a417845ea9c88f5e18c56ca6d369df49a590a8412b8d5dfeae835bb43262a8', + 46448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8679eba6682f01442ddb9e18e400eac10221a3bb143d41e445c817cfec15b903', + 80300, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6ef1432e62154d09328ffaff7857de9b62fd7d2cf0cdbbc165025760e03ca484', + 46364, + ), + }, + 'WorkSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '688a4f5d63c4bc980021d821cf37dce04df7a2015a9f003953762917d5322876', + 113352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8f4170b2cfdaeb3ec7109531ebf313ae1d9a08b2cac7dbbff36f7fcd60c18f74', + 113700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3805a4544cc9586afe45e3e6b65c5b983f3c2596433553c0b0ea87d4daaedd48', + 114040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e3f7658c0730039e4c170dc038292141b9ac48df1732c335200391b072d6599', + 114120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '771c56ba0b70f89a2edceacc63366964e696ed08a4db18a4d6af15bb6ed8318b', + 114588, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '875a448a33f3673a0326c8647563ec93a8c15a2a5aef107e089e09e5da1288f4', + 115352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ea5c4735d6c8653f9dc162ea61d8be6f1fc0cf42e813db5d9dbdd5f610739fcf', + 115608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9d72593c2d53912d6aedbac3f0f8f84197e908addd8a3870be8755efeb3d2816', + 116948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe156c34059af0eef376e3716cd3d2eabb62c99cbc0a73146cbccbd7c13b6e8c', + 116580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6a8babe1d56d043dbfbb1a6efff6c8eb12a54f202285af67904e35cb5f3a7175', + 108992, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0aba0d460978b7b55616af15601b31055fe7f6a627fb2b6971f4256f68e429b9', + 109236, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f0e60479bdec0269db6a69582615bb55092b6153546d2182b2bcb51fefda2f41', + 109148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '75faede128dadf582676dccfb888be228d62aece1f07bb48d2981c3946681edd', + 109064, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'af70481e96ef9bac7710f2ada9aac0e5d5b24543e422af70fed8ca01f410f6f5', + 109740, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '89cb210f6d404267994c4cedf01e360eff6ab8034dac59bfc01704fdc1e292b5', + 110120, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '13a8fcd9f5055d1154aef1a5b7da881e131d7a1a6a1b2f5999d742cee9ae102c', + 110340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '18d4ebbd4401f2bc3b923918e5588d73b9c22b5a8bac58705dc9ae6b55c9673b', + 111772, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f07791be412574fabdf29eb1f49fdf1239884838717c011e53b5ee7d026acd94', + 111624, + ), + }, + 'Workbench': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1f233936199d83bc05cbe9713630c83e225dbe81f1315b6343ef79b7d8daf7ab', + 19884, + ), + }, + 'XanhMono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e93b1f1a41c9c6d924ab92f23c91764b6e6ade7b78e0e568115ff446644699b6', + 38916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '94d5da2862ea346a4bb60d377d2593cda0fb55078716b137334b859485c91c34', + 41920, + ), + }, + 'Yaldevi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c2242e895e5243d02745b7191bac6b82c80b2bac7cbf74f199dfd88e37729de', + 265716, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3116ee0ff98b79221695b5b17325976cc17b63f94aec4300ae744cbe75542835', + 266340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a4e1a88c5293ff3eec407af34540ad0990b494a9f11a604bce254fe9a53a3d26', + 266552, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dfaad8fc3d32d625f8448c286d1ba4440bb5935d23c01cb58bac29aa1313815e', + 266664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7d41de22203e74e7a2df1f59b30da8b720005b7fc9d617975ebcbeea702eef7e', + 266816, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1994ea6c081ab5ab056be29b2529f37ed022f87e6e29c6cf821823a0538414c5', + 266040, + ), + }, + 'YanoneKaffeesatz': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ddfe72c9ba672a505f58cf94990f47f0a125fd867a3ab8ffab1d8f94dd202587', + 75068, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '801d89d504f21bd502af60cd832fa54c0c7ddbb74e402fe1b820fdd4c79b481d', + 75496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7e42a53236a483ee0d0eb6bfd50d21b8c57ed071868cb97d1db529fa150b15a2', + 75524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'decabab3b9fc90fd22ecdfbbe75dfdee77773ac1c530cda62fa0726e10f1e3a3', + 75548, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c407f66d0e3007f6bf6eecebc2abb0de492b72a92e7586109346f691d5004b8a', + 75460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fef05416ad93337f8e70696f696dad79de71f8bf6bef53a93817da7a5d0e52ff', + 75328, + ), + }, + 'Yantramanav': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2f8f821f9254c1ee4ecea7437fd67cd27c149b11d8296aeacbdffbf992c2998e', + 100516, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '75b590ebf7b02489e059eafe9ffe1c9cde5b4a431947359d83cf562e3342e6c9', + 98840, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ba40b6246a83ce74fb3bf05b7ee892ea531feb9f4e869fb3c2c759976cf8b852', + 98748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc240eb9595734f0b1047c9d10dc728797e54173912cbf4098848d2dcbedff2f', + 97680, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42cb4a2a758648f5405d8cfbd8821a04704a37d0ad5c86201cf5ca1055aaa4d6', + 98144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bc57c0cf68b6eaa6d0676269df4aade8e22c06f6085520d608b197dfdbf3834e', + 97960, + ), + }, + 'Yarndings12': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '74ba118b0cb9b20709c3bc78501fdebc7ccb06e41a16ef986a3e1602971fce35', + 14496, + ), + }, + 'Yarndings12Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1323b2605e2fbce20306d3bd3f6823cb229ae142bf1d3b81572ec5f5f7e256f0', + 142652, + ), + }, + 'Yarndings20': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f9d2dca92aa3bbea8f531364a37869b95abc82e160df11fe8a1dbcd1aa772c6d', + 18744, + ), + }, + 'Yarndings20Charted': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fec57be364f4dea17f088c9e41a9485e290e3e1b903d2a1c051acbb3c992e35', + 299232, + ), + }, + 'YatraOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'de8121c016646186feb903ff7d0e84e6d900b2c8128cbf012026ff15f4bb8795', + 195904, + ), + }, + 'Yellowtail': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ae2bea559dbbd682ec8df15b94994a2407f9ddcb4cc88312a8c8a4cadf2cb665', + 60864, + ), + }, + 'YeonSung': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6a8e4215f3fe6645a9acd68f7df1d9aa3d551639bbad884c9650a420dd7eb4b6', + 1699040, + ), + }, + 'YesevaOne': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '0f40d9b1cef5ab4f5a9e945257e5528a6165674bfd3746fface336197e65d42d', + 70252, + ), + }, + 'Yesteryear': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e598b4311acf938fde3d479d9331d911d3edbf7b025d4c3db27d8bff2277e96c', + 60736, + ), + }, + 'Yomogi': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '248551e8412573c3ba73d74b62f10b4691668fe2f37351f99d7d85eb6be1532a', + 4033948, + ), + }, + 'YoungSerif': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '027dca61a80cb0a8f1263d0f19d9cf0d4e972a9755bcdfc454f38f18c5d71bc1', + 75440, + ), + }, + 'Yrsa': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '72b95750abe7d931667826ff22bdfb431628f12c76f0ed7d804bcf1af4a28e7e', + 114696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '36bcb48f2349fcd371f73dc056b416885e756237e74e78373a3f9552e0cb8412', + 114952, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e5d8cd29e48bd38e9fc60cca0abfd61487180604a63713c2b5df05abb8b1e056', + 115000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be69b3bf2bd31d38842071fa44feddc6962fb455b2969f4f8a5aa7a0d56e419b', + 115088, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '162bf87a8a40d8fbdaca980b46b6efd8b855d51310f0de31d276eefe21a65c2f', + 114392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd61a53967e2aeb341ac7d3939890ab2401902e8586fa7a96d558c258e8906304', + 148540, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c3f22fc080bf05ba5dbbb07b0e6799989377d4ee51b1f1c4b395f84364a77ae1', + 148460, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0f4b7402b872ae043b0cc6ad12b4ac3ace326aace98b3a4a5754d61a96719344', + 148536, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ba6bc0a3649f50e76d797176a94a2fe07afc6b76b1537e9f3190f6e9e10a8289', + 148660, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ac1d276ccf975f60e9987663aefa260ef4c9d5343b33172d06b2233968d50b17', + 147788, + ), + }, + 'Ysabeau': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1dba48263a48790f73f0e9849b4f3b436ad36cbbec4a2020bf6a40a827ff6df2', + 128980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '62914145206ea100aeb49f102279014783345162265bb116a29a1d61ec01c9d8', + 129056, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6665c2206b5d7739480ec64ea894cbf21177b1b9c6ed9688f4b9a0d1630d8d3b', + 129032, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '92d55af318391014a850431c0a6539739d3a66afa3ee6754100ba4822d4d6b6c', + 129112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd74db2414adccd8ff97af06cfd6721dc127aadc6ddbbef55b5326e03c9776df9', + 129028, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a23409120a99952b4de395557ff76e214c6b7f0aacd68dfa1f672f2033c87df2', + 129436, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b43189a467fd76f37871653ad8324381baf0960a108f4e689e4ec1b415971a3', + 129128, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'be3e81092f5849df1f7041c4077c50254f996a106a1f48ce16918d4a5f4d8359', + 130040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd76476c6bc603c127b615e984d9b70ddd73badef5e0e893056d35a3f0d2cdbe9', + 130796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '28d55586579120e99a7b58483579133dea5e505706271e4c8c6f1eaf0824ec97', + 137328, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '91e7dec55e24bd0b910b4ca7314681f69fa32c5055a11b36ca3c771d9163c29a', + 137580, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a7b3f4ced0bde9f902da99a04f4173005c51145c0f0cdea160f8af12638f8c85', + 137400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '441bfdb4358edf59ae630d1caee3cd26ac74ee4c886a22d0901c42b016739ef9', + 137332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'af7bf350d88ec5bf2946aaa7539b1c9aea4cd71a3e3224176e131047803d666d', + 137532, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fe461927cfdb65243c4080b3bb99196a218ac0776c39f5f0471dca9d993eadc7', + 137728, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '09c01bc818f8ce4fe946574b8c4a4e1dcf808159d0ff98aaa1e6854d1199d2df', + 137480, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c71d023e8f052690713d2292150ee3829364f199a5d3de28f85bd84ac77609a2', + 138504, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8797293be675c54aae2cc4b8c58763601aa0ae0d6ab2a78fd35447d0b82fdf92', + 138724, + ), + }, + 'YsabeauInfant': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a0dc781ae3eedbdd8534eb4f2b218e7225023480c82dadf0ed6304444ec51889', + 122972, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5b5e2503d2502d9e9812a563d64c92f9bcff6689a76ac31d95d2d1fff90b379c', + 123020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '97543e66230964365661ed5664846c3c2c84479db8be57ba2a8ddc6d421e0e3b', + 123000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '117066c1d00c71ed91468e77c873f917b27ad59b277aea9baf1bbdc010111dc6', + 123112, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e504c583ca093ed3e0022a4fb3e6155e00adb619e068a8c8a8e25b3ebb2e4b1f', + 123148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e9d3ebf4cd7d72cac32c894540d85ea87dca436836c9c2cefb545fb7182225cf', + 123116, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e64facc2dadc72441a4f3c26344055e3ecab659923234cf0bc109053d504be03', + 122856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6b1f3cf57bff270639dc533e617be49ad3b480fcf6e9de33fcdd1e3a103cd99', + 123396, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c6fc88b93f920691d7dbb0b4894d03ac36fb38944004e78e70d0533aec2b2af4', + 123484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0fea269c145bfe49893e10beae30c3f2c50d7ff05d3e1ea634c9a4014aa278fc', + 129628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'a5670d5eff45d3fd5d62187130573e7c2c73b5caeb56734e9535157f86276d94', + 129844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '71cf1779963e5b6e376c95466d123b3c02393b1113239975ecbd26c9278862c2', + 129640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '561590a97e484cbd194aa96873e690f7506bc60ee6e218434e53d7e0d24f6b7c', + 129572, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '1207626ff3cefa5c87c90c428f6d51f6cec2248c1bbedb9072d18fc2cb6a98cb', + 129780, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '71d3c417ac1651f1e733500307df7be571a110b932c616f8a35dd9d7ee06c272', + 129648, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'cb4b86241edcd084415d2a24ad4496d31040444d975feea96dd667393aa3511b', + 129412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c7dbbc0c82ee06e0ef24e67ea2d37f51f006166dac2eff43197221497148d1d5', + 129872, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '47daab37d18cc8ad35f1434c289de3fc36069aacd91e25cdd1051cce4e92f410', + 129784, + ), + }, + 'YsabeauOffice': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'ce154273a63a8f67c12273980c5c7a35afc9989f926b1211f67ad883b778e841', + 123392, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd746dc87db13200c1f17683a6d924905482e559d6d37f01ab1861263335a8d47', + 123464, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f658223c5865da8a84a801c9d0d042170ca7d69ef5b3bb1b7f7f59bccd3fea37', + 123444, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1b61d7242e0a19156cf6e7660b13734700bf38c6f3edee8efd6d9a33a0a47dba', + 123524, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'c7f6161168feb783737b447ea193878011348b619f2f2bb0cffd053986dba196', + 123452, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '87221871142e48618b2e77f7ce800901041be53c5e4efb90221b945dfe9b2ca0', + 123544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '499e04aa8b7ad20115cb6c36aa25450d4415d6b1ab41e6a4c59330ef71f31a5c', + 123244, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5ef163c5839a64aba6c9e43961c6df71c8f3d2a950a7bdfc7d475eedfb8608ca', + 123748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '48c0eeb3352db33e909c55b2e96794c3c6fb3dc1c1f0c93820b39197df78244b', + 123856, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '5a3e44fa8f1e44a885696c6508a5a706c21408e0fe8d6c8136c386f3306fcb1d', + 130468, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e8aeea70278d4348e5247eae95aab714b53a4a195c5510cb4aea2d01cbdb44de', + 130704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'b251eb48e07f60f1660427caa6120ab171c9d54b7b77b8e6e45cd5b31fa6427b', + 130492, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '159a02c28ab835acb0e2934c1c3e46149beb6108ae64e018e03c5b9954edbfaf', + 130432, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2519cff4a9ee6fcaf2b7b78ae377f48d3b477905980ec6e22843d6e82e6973ee', + 130640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8cd3a19a59e34d38cad9cd41597b35d8668082a1c2ff4fe05a19af4f1f44c887', + 130496, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '949b50b9e2ca3a745f391b5f137fdaf1fb3a82f7fc5f19f003f6a97462e93427', + 130248, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '279569caddca830ee92ab2ebd02bb73faa12101fd3c452ae5c80bb2effff0e66', + 130732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad3f8871edd0d38c6c74f248176ffda569c0727587a5b02ad6a642ee64e0203d', + 130636, + ), + }, + 'YsabeauSC': { + const GoogleFontsVariant( + fontWeight: FontWeight.w100, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2dfc3f2ad092f8edfe157596e3a68f480479897dc9c470a4acf6506f42681e7d', + 102980, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5eebf0d366af437e517a866d5602fa237c492a20c4d31d4ae272592ce8c1932b', + 102984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3e24c531f8b71f993db94cc87dafcca34339336d5f5f8332ce206f1b7764f680', + 102984, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '80e98d9842a6d89785f6c474f56e465399dfce77f6cdd07f758b35dee7deea0f', + 103004, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'f6e815998788ef2f469a1bfbd75df7f4697aad3d7ebccf4599750cd283fa8812', + 102996, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3d21bf369302b9bb5bdf7e84a1bc344181f266e10a2cf59a6c05e5b94a63088f', + 103000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90e03e78cda184de7108f5c1c0385703ed43380d430aaf9d231d78d65ecb2347', + 102900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fc8ce1ad656610d145e9aab6c5897aef5670a57b0e9dcba6c52e0ce628e3674e', + 103104, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '90bb486232e946d3964c9cd6ac5819d5a88d2060390ee1027806278ac8f6902e', + 103188, + ), + }, + 'YujiBoku': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '17877c1caac5c50fadc16aa96318c3ec6b747ff9640278bb7ca3a40e675e586d', + 7847632, + ), + }, + 'YujiHentaiganaAkari': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd346cae615a92cc91fafebc7a3574af2cabbf72c0b202e2724076d07d7635053', + 90896, + ), + }, + 'YujiHentaiganaAkebono': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a408beabb191436e2825dddd20ef2dcd29e348982b4bf8b8b684a63aa9f799c7', + 96500, + ), + }, + 'YujiMai': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4e3b762606eae1245c282c130a520d8a8d48bf5293e0bfffa3c866a705f0f35c', + 7830380, + ), + }, + 'YujiSyuku': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '23814ddf8f3c8ef8a979f286314453f6ae6110db22bbb3f214bc0e6bdcd47a15', + 7779308, + ), + }, + 'YuseiMagic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '941f2e8484c81297c9e971ac741664eb60aee15534b3a4a5439b18c35b262f3d', + 3129936, + ), + }, + 'ZCOOLKuaiLe': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e8b26c7c0266920fb595b735c294298d4ef1bc389a465f2df3f81abb060c04ec', + 1509692, + ), + }, + 'ZCOOLQingKeHuangYou': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e16a50bb1a82c4317653438ace285153e379ce1cdff437aeadd944cf03277b90', + 5827584, + ), + }, + 'ZCOOLXiaoWei': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bd268ad4ce6f388becd5a698faff156cf4291940f1ac2cb7b68a02e4b547386d', + 3917772, + ), + }, + 'Zain': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57fadcdcf3751821856c77f417be022f028ca9d7dca5b1d5674a9ce1a24af288', + 116948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8a0690a2563540c65c38d8b8c230f22f12d4bde27d05a6212e1a114b11fb2182', + 120864, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '65f5e832659ef1505f4e6743070c54b39cb543c98dfe47066c6824adeda22057', + 139048, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd1543193c9600da5e6d2869cf03d2c5dc86e60b1b2a4876bcd452640af67bdbb', + 118608, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '393ee155030f7af618637b73b89ab234d963efc228e54c72c2484e2b57d16ba7', + 131928, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '3545787915a241708318f71b2dfbdf3e1148ed6188cf5cc6def8410951909814', + 118484, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e6e1cdb9eccdcfcdb1bda8bb626c32738e7b3bbf63eb9ad7ae8fe4b990ea4a6b', + 116456, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a8c1bb7c6796c2e902eb019a93370f1fabd6d836761f57b1502c355e81c3920', + 115584, + ), + }, + 'ZalandoSans': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4706e19038b315c56d7edf093422fee39299dcdfcf6bbd4dc09ea9346d769bfc', + 59260, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4a43a6f972dabeebadd01a86c262ba48ea84bab715c44f1bcec9c9d18151d816', + 59708, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '7994a299d9fc74aee180690137ab3472ee271a660290c45e266d75b5de0f2761', + 59584, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4151069e82c9f3354435fbdeaa975018e7f46ef69c0752c649bcafbd89c6bd82', + 59700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8c39e3ab884a9edb30f483aa3f7718671ee13132ecadaf87dcd3958889b9fb56', + 59964, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '15ad3984327da86a2fc8a605d1ef5cc661e0e64481265ed202c7cc646bb4628c', + 59836, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '57d7e79b947b1f1fc46c94571e523fa7a5db4ef9d2af8a34a82920a93654fbca', + 60000, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '408b6ec24109f31a9b1bcccd172100552bea84db5777014a55af7280697c684c', + 59876, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '664f356770712361569a572fd62ae996305a6463ed4dd8ba0f7064dc624b1cb7', + 59888, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '467687a54a32279c8ef74df81865477ff0d8e5a9e03e154349bc28a86a6f1553', + 61140, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e1f0629885870baea3680974d96e518c3bb7d422d842c49e3b179198c4aefc71', + 60704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c860ba8e3c65a81a0c96715e0b10fabf0fbc010dd465d3ba78d4879c4240e1a1', + 61080, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '32120bf65d78bd5b234c2a582b301430b5eff0b6fc5f29323026216f54c21f81', + 61420, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd5f58a4d643079be2ce255aa5d7aeee7c2e5d29c1f9aef5f6bf197c4a4ef96c0', + 61332, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'f0476157158f40813df6ed3d3d31b98e81f8d6796b8becb1124a14437149bc72', + 61512, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '8364098581b65b5ccc553a887921f9c66e2081288349209078267f74a271241a', + 61424, + ), + }, + 'ZalandoSansExpanded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fe6af4d578758da4bfb1f50836f80995dafd7fb4fd7c1be7f5a125aba40781db', + 59932, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '045da9c1a9fd9bd96fab81fa9f1489ccd98e8a858469dda4a4c6dcbd32dc80ed', + 60196, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '14116c35bbaae71a25aafd9505dd2b83078f546c2db7bbd9727057bf06dde03f', + 60100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b087031409d350c17a66af3d4412e6779c71bb741ec9a45d2734d82c7d1f53b7', + 60136, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a715d4a984c892c2a4320fc841993d2e4c1ee6f8317cf513c4a92c37f20f415b', + 60148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '42b49a2394b1d6fa7ae1b9581cd3b90ea2ae081caf8f392521dad6d79323a095', + 60084, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2e7052b6d58d5ce9e6a7fa5c57fa490f59238af3d7ae45ab3335c08121fd552c', + 59956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6bedbddb33ab978faa71ed09f8329a3e2d99889c0ced915d4db33bef4fe7c63f', + 59904, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'acb94f436b58ff5860e55d5795565dbc5300149ef25135d165e07375f7ae183a', + 60604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'e3f2a76c580763e1c48149d6ca22199ef7cf67460c694831b53c715066a90300', + 60784, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3820257e446f3704e7eb063078e45ef8fef57915fd278e4a89b6b81d75450d41', + 60640, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3b67fa3afe7baaa593b7c0a0b7ca6ba4f07e294295acec6605c225beefc89380', + 60748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'ad2923e028e831d594c65cc963edbebba3a3addb60d13bc37ab76e82d1626b89', + 60844, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'c7dfd8919bac8d5a9cce3c953d61621ae44bd9d618449e25aa2570d6345a52ab', + 60652, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '2551e35ac6ef985a4b2eb2130f778b86c59ab59b803731a2de3e0463d3f6cb4e', + 60664, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '472a58e7fc58a9c141476cd38be0980e6eaf49556492a3c341dd7b1ec5821529', + 60492, + ), + }, + 'ZalandoSansSemiExpanded': { + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4628bd7cf55491c7e8c448ece3605b67abeab43c90bb458cbd43bf2729989f78', + 60040, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '913decbb52e78e17f3331d0eff56074f067b83a4200282d49287a61bfc82eefd', + 60144, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6435de79d04d87a225ab89772b220a2d636c965487b786877eebc38e6c0d0fe6', + 60124, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8238fb640e0cf33315da147f66eb0498640754b782509a8a95aa9ac923d8cd1d', + 60100, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1256c9352d9a3c6840aee9558f2bbac35edc1dbe234c2a08d7eff553f1bb3d98', + 59916, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'bfe69d2102cc287e27aa5d88947f3351f8c0852e98a3cfa3ea9364d261191b69', + 59796, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5baa26d3aca371923e658ca177d6ad363005b06b9c6ba1081b3667473f969cbd', + 59948, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4b848b07d53ca24e871b843e08f50add8197805ec951ab17a4a25ec833adbff1', + 59852, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w200, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '3feef59be811ccf110943504efc29f458c1b0b86e38cba5988c1228d4c94dd77', + 60752, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '6fba20dac419ec3414d9f0b5ead1905e043e269ebafe73d49ac8fd9b6ca1641d', + 61620, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'd81d11ccfab15c241b84a3a406a876038203b14ea0b9f92757276e67a27a1616', + 61448, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '97c7c5cf8446a5a97efef710ca9214ebe5953f181f1e9113b4b5ead0f171f50c', + 61700, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '7e4d5f58ea1fed8689f39084ce23d283b0e1527242c7cacae3151e259b9c626d', + 61604, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '4211045efdc7e29184629e03a0db0df4850d086a86687d8e59b93cff96bb4665', + 61400, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w800, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'bdf3080106afe05b89bb320b1a3c01abafa708d6632542c450447cfa2ef6becb', + 61568, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '9e4561591284a2bcdd6ab7ef6a596601bcf773e16fa72618580870468def7380', + 61456, + ), + }, + 'ZenAntique': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02ff339bfc76a5c8e94c92d759a8691522b50df221ffce840f91c93c06850626', + 5505300, + ), + }, + 'ZenAntiqueSoft': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b66469bcd1ee0a56f75fa5cc1d70805cc69df48d79391a87e69743d6f715e49a', + 7092988, + ), + }, + 'ZenDots': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'a44e9a1ba163c1c40f514a486dc29478acdf96c1df36e9f6033ca57c7cabfcaf', + 23360, + ), + }, + 'ZenKakuGothicAntique': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '948894357406c7f71435eaf88c463bbc3567f115738f111148d5dd233c4590ec', + 2181748, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8626fa28270f60b3168f058183ab577d20c2d94b94984e357028628b5328c9d9', + 2367956, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'dc96785b413207da15ea4522fdf8c1b96d052bc97a771980acefde18c27d8432', + 2335352, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb56342478513ec272e0fa972c0d4d3c1851d6eaacbba59b23a0962876d1698c', + 2322020, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6d846b6d73921bbcf9b8c0b5fd8ecfc13a253471499e3158b4b2412bf26e0519', + 2306144, + ), + }, + 'ZenKakuGothicNew': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '06ae52a3401a015bcee36eea128eb4fee19666c6dd1c3e9d4732aec4158e6d75', + 2178440, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '67f17ccc7a7f5a26f799feb9cf647fe509648f9943ecaadb745615504f9666d4', + 2357792, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6fafdce8f5726736b79b4e6118e7f6b5c5e53e8f24204f63a3ef7fdc15725502', + 2325592, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'd4e8a9a774fa516121fc04b8187b56d57139419db49fd86d06c331619f68f03b', + 2311968, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2884952ee68ede183dcb7418a80e2c5c15c4c23cc920b69ef1bc9a037df75302', + 2298020, + ), + }, + 'ZenKurenaido': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b777c20cea8a55d690a40665a46fc13628b86ed3f141341e2d1accd22ac0beca', + 4300616, + ), + }, + 'ZenLoop': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '58486877a01dd2aa711a630ed32d072762795f739ecff0bc430adb06a70cb9a3', + 29632, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '0a3ce1fd4d665765fa20a078b326c1a8f9ad5917ae1692d50c71945c4443e916', + 31236, + ), + }, + 'ZenMaruGothic': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02f420d95225153aff6dd678cf486f2a3e6a7d0764b27a1e13eb35484784c9f4', + 3720820, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'fea6d7937b375090353e9df58987b784bb807ca8aa2e28d9c0c018f13ee21221', + 3830292, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cb3caeaf186d6aaa5d551847faeb5b23639af62f0e85b839e2352a040fe36c31', + 3808412, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'cd35e29918e3b485606211f7f8e7fac943a2e46422868f55fcadb45e1011ddb8', + 3776544, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '063367e350e7c8221e0e12ed590910a7814f84bb2826e284db0505317ef4b6e6', + 3707752, + ), + }, + 'ZenOldMincho': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '43f53fe7e3411475c9867ca889fccc9e950f1ef896618857a0cfc903f1377aea', + 5439900, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '8ae7770a0f93e128f28d572a11f48e0e15396341a4be8abbba5cbd3832a43cf9', + 5500156, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '96d633d176a18ce8ca8b8ea0800668da4410ecbe4400e511bc3af03247cdb740', + 5518704, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '30d2f8074f694ab515ce3bfda1257a1aa799ce30d1ba89221e702e1857b85be3', + 5433848, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w900, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '6019c2dd9622e4805edbed2ad0dfeb3913b3d99b29f2d9e430228417a074fd57', + 5413672, + ), + }, + 'ZenTokyoZoo': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '5862fa422e39449a64616d88e94aad7c6e55f91772e3c148f1842d2d023b74e8', + 33820, + ), + }, + 'Zeyada': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '972982f66da1230cddaceb5423ca746fcc3d68ad5a768f560e4000f4eba0b5b7', + 48496, + ), + }, + 'ZhiMangXing': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '2cfdcf6aaab70957495b4cc583148c9440a87ec3dcc4ae0c56ca8f64b660c556', + 4051916, + ), + }, + 'ZillaSlab': { + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '975c746744c19ee760ecd0334fb03af63dca2f670befa9d5434225b4e01247d7', + 94340, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w300, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + 'fe168d317260303e059a9dd2c5d548628fd85481cf2dab291c11c18dd54f912c', + 98148, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '1a5fb9f2554bf51651c05863ba2b119f1cf0acdf66276657eb60aae60ceb412c', + 94940, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '44d698a5aadf0388eba048034beede7a0d9d21f55b32fba9e01ac6d8bb820e6b', + 99388, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '02bca7482cfb84a12778c13a5c3ac41b459332fbc44a953634ab26c5caa6f848', + 95756, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w500, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '29ab9aad8e5557d3978a4eb8c9f27c46845c231620e29f6848e3d15dd760628d', + 100732, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '9bed44fc4dd167a5e092544464dd4c52022f3e790cf954789da38db807debc2c', + 95628, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w600, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '087d0fc693c19998e25c9317fe430a79dfacb4c0eb4f88c8d76742c8b583264d', + 100636, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + '4c9a667e75721e03ca20fadcdbfb7eaa7e6f4c85bd530bd5fc4921c38449e38c', + 96044, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.italic, + ): const GoogleFontsFile( + '638d989e7c6abd633f079aba6743fa00573dff96e94a086820b72b1f7ef57b95', + 100780, + ), + }, + 'ZillaSlabHighlight': { + const GoogleFontsVariant( + fontWeight: FontWeight.w400, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'b818547cf8dae690a22f13d84430c7a0e97ac187687cfdaef4a56527bd15ac46', + 80696, + ), + const GoogleFontsVariant( + fontWeight: FontWeight.w700, + fontStyle: FontStyle.normal, + ): const GoogleFontsFile( + 'e3f326d44980b4d43114437dbe8ca8744c8b778daadd8a7ceae1334ea662dd51', + 79820, + ), + }, + }; + + static TextStyle getFont(String fontFamily) { + return googleFontsTextStyle( + fontFamily: fontFamily, + fonts: fontsMap[fontFamily]!, + ); + } +}