Add Discord community version (64-bit only)

- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
package com.mbridge.msdk.foundation.same.net.d;
import com.mbridge.msdk.tracker.network.h;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
/* loaded from: classes4.dex */
public final class a {
public final byte[] a;
public final List<h> b;
public final Map<String, String> c;
public final int d;
public a(int i, byte[] bArr, List<h> list) {
this(i, bArr, a(list), list);
}
private a(int i, byte[] bArr, Map<String, String> map, List<h> list) {
this.d = i;
this.a = bArr;
this.c = map;
if (list == null) {
this.b = null;
} else {
this.b = Collections.unmodifiableList(list);
}
}
private static Map<String, String> a(List<h> list) {
if (list == null) {
return null;
}
if (list.isEmpty()) {
return Collections.emptyMap();
}
TreeMap treeMap = new TreeMap(String.CASE_INSENSITIVE_ORDER);
for (h hVar : list) {
treeMap.put(hVar.a(), hVar.b());
}
return treeMap;
}
}