Files
rr3-apk/decompiled-community/sources/com/mbridge/msdk/tracker/network/r.java
Daniel Elliott c080f0d97f 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
2026-02-18 15:48:36 -08:00

48 lines
1.2 KiB
Java

package com.mbridge.msdk.tracker.network;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;
/* loaded from: classes4.dex */
public final class r {
public final int a;
public final byte[] b;
public final Map<String, String> c;
public final List<h> d;
public final boolean e;
public final long f;
public r(int i, byte[] bArr, boolean z, long j, List<h> list) {
this(i, bArr, a(list), list, z, j);
}
private r(int i, byte[] bArr, Map<String, String> map, List<h> list, boolean z, long j) {
this.a = i;
this.b = bArr;
this.c = map;
if (list == null) {
this.d = null;
} else {
this.d = Collections.unmodifiableList(list);
}
this.e = z;
this.f = j;
}
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;
}
}