Merge pull request #31 from Hannnes1/feature/native-assets

Download and unzip native assets during build
This commit is contained in:
Nick Fisher
2024-06-08 15:44:43 +10:00
committed by GitHub
244 changed files with 36 additions and 741 deletions

View File

@@ -1,4 +1,5 @@
import 'dart:io';
import 'package:archive/archive.dart';
import 'package:logging/logging.dart';
import 'package:native_assets_cli/native_assets_cli.dart';
import 'package:native_toolchain_c/native_toolchain_c.dart';
@@ -10,8 +11,7 @@ void main(List<String> args) async {
var libDir = "${config.packageRoot.toFilePath()}/native/lib/$platform/";
if (platform == "macos") {
libDir +=
"${config.dryRun ? "debug" : config.buildMode == BuildMode.debug ? "debug" : "release"}";
libDir += "${config.dryRun ? "debug" : config.buildMode == BuildMode.debug ? "debug" : "release"}";
} else if (platform == "android") {
// we don't recommend using Filament debug builds on Android, since there
// are known driver issues, e.g.:
@@ -35,6 +35,11 @@ void main(List<String> args) async {
}
}
// Assume that the libraries exist if the directory containing them exists.
if (!Directory(libDir).existsSync()) {
await _downloadLibraries(platform, libDir);
}
final packageName = config.packageName;
final sources = Directory("${config.packageRoot.toFilePath()}/native/src")
@@ -80,15 +85,7 @@ void main(List<String> args) async {
var frameworks = [];
if (platform == "ios") {
frameworks.addAll([
'Foundation',
'CoreGraphics',
'QuartzCore',
'GLKit',
"Metal",
'CoreVideo',
'OpenGLES'
]);
frameworks.addAll(['Foundation', 'CoreGraphics', 'QuartzCore', 'GLKit', "Metal", 'CoreVideo', 'OpenGLES']);
} else if (platform == "macos") {
frameworks.addAll([
'Foundation',
@@ -135,8 +132,7 @@ void main(List<String> args) async {
_ => throw FormatException('Invalid')
};
var ndkRoot = File(config.cCompiler.compiler!.path).parent.parent.path;
var stlPath =
File("$ndkRoot/sysroot/usr/lib/${archExtension}/libc++_shared.so");
var stlPath = File("$ndkRoot/sysroot/usr/lib/${archExtension}/libc++_shared.so");
output.addAsset(NativeCodeAsset(
package: "dart_filament",
name: "libc++_shared.so",
@@ -147,3 +143,27 @@ void main(List<String> args) async {
}
});
}
Future<void> _downloadLibraries(String platform, String outputDirectory) async {
final request = await HttpClient().getUrl(Uri.parse('http://localhost:8000/$platform-libraries.zip'));
final response = await request.close();
final libraryZip = File('${Directory.systemTemp.path}/$platform-libraries.zip');
await response.pipe(libraryZip.openWrite());
final archive = ZipDecoder().decodeBytes(await libraryZip.readAsBytes());
for (final file in archive) {
final filename = file.name;
if (file.isFile) {
final data = file.content as List<int>;
final f = File('$outputDirectory/$filename');
await f.create(recursive: true);
await f.writeAsBytes(data);
} else {
final d = Directory('$outputDirectory/$filename');
await d.create(recursive: true);
}
}
}

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1aff0246d845db4cc4044de3d4f9ff7773ef4f672d621cef66863414f4de411c
size 1791046

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:763214f288347f7ad78398e18c17b1898871493b4538361d974fb49a9466cb95
size 377548

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7019b736298f3fdae6c561f8cee07fb84055d28dfd69d52d4812968b24794d5d
size 199928

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:69101e5d4ab838035c19f9dfe8c0e33a0c337abbf495f57a8422c3c3da42dd28
size 43940

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:229b158f27cdb7400cf8ada9ff3ace6bb03f7ad523b5079ad05c54485de57bfc
size 285712

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5773aae825e71ed29c38a9fc2a2332a6bd69dedba25cb632eaabfafd350b1017
size 1939142

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:df0c3ed7202868b446e12c3f682e4606df9c73270f34835f871651eac405e99b
size 47462

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:996ee83853bd5eeaffd0bc77fc942ee0611ec6dd3c4fdaf5e32192d3b4345cda
size 32306

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2690bf4bddc6dddcd4d67be17b950a5fd0cdfb2b3d0b1b16732912a3ace59a91
size 24966462

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f84deda777d3c82156ce2815ae1f8f4aa939a404577fa59571e2994c9154b02e
size 65546

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:39ff3efdab81fc2f81a5b4fc79a700e6ce28d291fe8f339661091c910cd9d51b
size 2384606

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:241eb7ee601094049d3858e209de46f775f8c07cfa9484e0350e779227294061
size 30970

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6a0d47aae41fe5054edb14dc9a290a1ef6442abc52ff27e8fb3e088bc99f9a6
size 296144

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0cfed8be42c73be500a8a80403b2ba299fd941a241705ad71c7fd9a9d79f3502
size 854930

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1ac131a38a487eb0f81bb79b54db1d8e22b81e20f32fee71084748ff7d5db76
size 199008

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:16ad21995b382f288f1aa019b6b1e543453e8f03f30215f62bfe8c2c3ee6747b
size 244010

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a8c0675caa599e8bd9d2b7a69d7b734b015b2d5aef065838438a84d00c771686
size 75120

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2affa1a46f0509e26741e613278ba7742e73d5665b201d9819c9357b3824c9ff
size 212054

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6b513ebd8fb5c8465493d965ae371eb35db4accf8ba8b3c72c8b6e669df5a7a
size 42172

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ddb2ec4f6be24a410df7353ca385bf5bff32b5f921d773847735185f38d431e1
size 112938

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:54d6c7f89cdc0633ca59b78902afe734cde0a1912295fa64d4b24a4b837f0f36
size 21510

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dde94c36b283091a5a3211e8a336f3f50dd1664db09929e5f2a654adaf0db6b3
size 355194

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6b012f9dd0d73ca1f25368f3d076971684d65f2e00f219c8fe3e49964fba672a
size 132022

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c95c04fddaf2502e4fd18f92fa10dd7b115c95a04b83084d57ac7897bb555f35
size 45228

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4c6073933e1ca709af9d6fbb4b99b825d5de5f424f03d25ea9beacd6cd52e62
size 125910

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f27ccb09daed406bd49c8d47b1738815d8daf0336a3fea6fdb059876e2416493
size 226376

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bdd796813716511ca08d0f8815da25c8258e4c85dea67ee6e29417e72a0c374b
size 1928556

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:81b357e83fce4a38612994f161475c7dc5a3dfc81eefc0d55ce3251fde60b3c2
size 23616

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:71161c4170267552421969d74db8179b6584436dc9fbd5097c1d3e4bbee3d075
size 247160

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48b9096489e6b26284727e9abc8f5b1b969c35dad3e1c452230b0a0cb8832bc9
size 481530

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f5b4a0ed465043699bbcca25fda0c12310f8d29df7a00897fe3617671b3cd6f8
size 2478

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8e183e689f3a390bb390a2f7289aeb969ec2087655e163fc86f49c78bd851d4
size 702122

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f6558a579a3a695b2059779b1021ef0b33d4ea20c8b0ae3d151b3a95435508ff
size 1653800

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:615e01cf41a25664152543b4a9682037bd23c5b7833e8fbd144d2e84e2f435b2
size 331162

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94b38df30730cfd238548d17f1f333a33d2cdff99a78db0116b0fc99c07bc5b5
size 97748

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:afce523da2407c5c28dd4b6f84b35b55cbeb54300205f04f01ce3b7b2c733956
size 47048

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:13c14e7d1ea19a535db271e7e407269ebeb75416d2f0fa724611d4999781ab5d
size 187280

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a4b8a71b45ba72fa36a462fc0f33025f98f9b29d922383831501699a103df3fb
size 1790762

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e86fcce39bc84c5cb3be46fd53b4a2641210dbdeb24889d18fd120f779622497
size 44308

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:57f936061b5be9cfd4cc3cec233888c32432f16bbec3c26a8bd81dcf19e03030
size 32722

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f496b49349dacf7be4ed10ae9299e80ad6fcb5839daf7e1f7f152998a946bba1
size 21918644

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ab9e805accc8ae3aa9c955c7f42d85cf13d1c111d63ceff53d2a836cf7539e53
size 57426

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d4585f68d6f5410f5ee0f5f45bde2d8b35ceb4bfc4b9826649e3c2b276c70ab
size 2469324

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0bbd105d7bc3131a217ae389bc4864bbcf0f3351a09614f2a70479291890a390
size 29554

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d264390f6d658fe406ff1d7b83c80e1ddafd2eead6cc1c491499e9d197846efc
size 256556

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:38507266bdda058e04a50c63ee567ad15d95fd28b8e8e8499502c81874eee98f
size 772456

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c98003c33fd7b27a22469e1fd56a740844f50d89f055be552458f06ccdb0d9c7
size 208880

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:53bc579c93572ac578223ae3b480c5b2050f7ad5db4ddccf241db46b73362966
size 258494

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b43b73ad1f97929c37324b7e3c0c17002368a8fe18b617ee322588941b189314
size 62584

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c413e680c5df5f8ca0600df1938c0c94e52ba15f733fb86dac6259efe8becd1
size 161038

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6a623ffc8235e4026b870ea5d9ffc7218e74d081396fd524d95695529d3f26de
size 35226

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7fea1fe71efe236e4ef76e919f2c80a437f6c45c954e47e0abfec3bc4a56ccb4
size 90442

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1efc3b24d2f826dfab40094f838b589dde31e59d81ab23e912780465a6403b70
size 15614

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fd5bf07a67fbb6096da10f6ffc3a60aaf720662370c6ccbbf3582999d0833c28
size 243322

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:baa0f1dd061111e88f95f807d3e559a690347d97b51052f230208b35d38e4f37
size 131258

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ecb96e12638e1ec9b2ad85199c2c6ff4ef0154f4048537a56b7fec7178c4d287
size 32808

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76c5dfd97d82fb29af80b97077e54f4390a7fc089fcb63e5fd4f236f081c2b3a
size 86666

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:09ee485f222900bc3f67d9daec7711d7ca1c57abcacc7f4df5e5f76f2534ea47
size 152200

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b0bf38d13f6d50e0156d9e448ab914a14a44c469eb1ef32ab11ac32f6234ca99
size 1928372

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1aca21da2c95eb45d8b86309d8c4247567477a4bc41d17837df6746ba5204ca5
size 21136

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3fb4bf0d2042f22e51bbb1a1c19c6ea1c74fba2ee8559a135dd0f59a2e8caa20
size 230088

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b5320d16ec6fe4cbea461451dc3b2bee631b515b2f975f9c9c1e2e161e14e8d1
size 362738

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:65a78471c67f042392f860feaa3fd344c436283045191e7666a68ccf7bd3ca7e
size 2282

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e3a1ded524f9f43884d0fd684574ef0aee22ff888a7985b19d709f4575081ead
size 564374

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2cb5d81544b7207efa136273c44e3cacb5ae6c2d603f2a34c08640dd3197e824
size 1516428

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:02253f2e4c8b3a2aa7c9baaae64411dbf8960224424ed35e437b5d14083212ed
size 380576

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1a6a15b96e26180ac9f156c1da780e348617fb7831cf8e43d65b85fa4af3e91b
size 130672

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:572987837608fefb8e66305c70d9a9ad40b146a2bae098c3d3b78c88977c7771
size 43076

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe4fc867f32291cb35cac5bc2970b79b266d9f701408b81f6cf288cd8afbece9
size 231264

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78e446b4cde5bd7dcf06ca7b1b3cf46d05cfe21d52d03bbb24324b956f37fda2
size 1669708

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c70d0a2983662abf721843b54c9d5126e6b9a58d4ab09f3862cf0a80c4f333f3
size 39044

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d89805f1256be54f65ab9c74da0583f9c0235226583263964307d5e94fd35e44
size 30978

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6d697ee595317c76a1d81fd3f8abf029ed43f687b05f5344b15a169188ed5815
size 20289628

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:95a184df6178245da98b5f4cf4d102564df2847044314c98e4a21a90586072e5
size 57922

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7d66c35061e66a5234969c67c0dc7a088d593a5c2cc2a32111db4e9df3059d75
size 2275644

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1f2352a751d4b11491953594b734fd3b5eed850acdffab070bfdba7a181e671
size 25342

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:82146f6482e6b5ca4f348a2965132bc6b69093e6da6a89cea8798e34f68f5dd3
size 293224

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66f53c6e998042e6a8a357564e7b7bb12eddaa74b5d1b7d6d38302e1a7599a29
size 773392

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f90586ee24c55b4b40b5c59c53c0a3faac422d3e218c3b807d7d838ad50763cb
size 193288

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9fdd674a4c0bce672ede950c48f929ef9fd5a5c2467d7d6146309dfd2f7988ae
size 235302

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:35913c719afa01a54506b393b48402ee75a87d80f672ebf1bc4f4119f6cd481e
size 66658

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fad4729150c16cbc07a1ef3f442f17c539723329a74e52e50b8001ded18061e2
size 167674

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa6ce45a1982186e248dacf9e8bb9f829283633cdc8c083d36f4597c21d5d38f
size 46006

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f9b0ba2884fa6bf0d5a7ff55cb572a150dd828173782b3d30840314a89007307
size 116746

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:576a35b20d60c327aa165ad882b0370c747e305e772018897fe92e896bc4d580
size 24674

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:68680810cf49495414ca6c5098b726696038bccb892f9de56c2899f97ae483c6
size 308346

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fa6340502a4488faac1bdec36fa18837f364a052e82aa3bb38fcfc5ea5f35cf9
size 131170

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1248c62aec9b7685e28b3dab4b771d362c3ab79715f7b6c0cb815177dc6af199
size 38928

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f805c62af73d67ebd4e4190a6898c1c239e5140444dece032c961b87e367a882
size 109674

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a9a1b003919d978bac2301ed573b511f80101da311cd33486290cd4ba0caf953
size 175696

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:91d1d25c742b4b794785afb504fb3d4c70ca0d68d202f4f2d396fbcc4e3d64f7
size 1928152

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2d660cb15a31f28a900c2ca2f10e86561fe7004caadc56e52c9c6d3a3139351
size 21200

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:18c60c4fd4e07f7eb0cb92b80f11da4a7b78d5364fa0114b04318b0b4309bc39
size 191424

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad6a81806956f0e3b5aa14f564b63a84e4a2e101b11053e326b4bab24a8d45ec
size 383764

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:af65b95cebee5edab0fa48f64ece19d19c6d295744c0fad9012320cdba766a10
size 2058

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a51e420bae846b043345f2de6da16c1d42f241f1eaa6dd30b53cb9b41fe1da46
size 820802

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a7ad950828265e57d17ae64b5ee6429983e818be815fff8d31ecb4ff91e02a58
size 1766820

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90127385bd8644f3f67b37c89a1f577e8b06542c0294b975137f2d85f6c013fb
size 392376

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e9f84bb9bf0d40d277fef86e9116cc9c31b4205d52b802462f9c2f6aea6c1ce7
size 174552

Some files were not shown because too many files have changed in this diff Show More