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,58 @@
package com.google.gson;
import com.google.gson.internal.LazilyParsedNumber;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.MalformedJsonException;
import java.io.IOException;
import java.math.BigDecimal;
/* loaded from: classes3.dex */
public enum ToNumberPolicy implements ToNumberStrategy {
DOUBLE { // from class: com.google.gson.ToNumberPolicy.1
@Override // com.google.gson.ToNumberStrategy
public Double readNumber(JsonReader jsonReader) throws IOException {
return Double.valueOf(jsonReader.nextDouble());
}
},
LAZILY_PARSED_NUMBER { // from class: com.google.gson.ToNumberPolicy.2
@Override // com.google.gson.ToNumberStrategy
public Number readNumber(JsonReader jsonReader) throws IOException {
return new LazilyParsedNumber(jsonReader.nextString());
}
},
LONG_OR_DOUBLE { // from class: com.google.gson.ToNumberPolicy.3
@Override // com.google.gson.ToNumberStrategy
public Number readNumber(JsonReader jsonReader) throws IOException, JsonParseException {
String nextString = jsonReader.nextString();
try {
try {
return Long.valueOf(Long.parseLong(nextString));
} catch (NumberFormatException unused) {
Double valueOf = Double.valueOf(nextString);
if (!valueOf.isInfinite()) {
if (valueOf.isNaN()) {
}
return valueOf;
}
if (!jsonReader.isLenient()) {
throw new MalformedJsonException("JSON forbids NaN and infinities: " + valueOf + "; at path " + jsonReader.getPath());
}
return valueOf;
}
} catch (NumberFormatException e) {
throw new JsonParseException("Cannot parse " + nextString + "; at path " + jsonReader.getPath(), e);
}
}
},
BIG_DECIMAL { // from class: com.google.gson.ToNumberPolicy.4
@Override // com.google.gson.ToNumberStrategy
public BigDecimal readNumber(JsonReader jsonReader) throws IOException {
String nextString = jsonReader.nextString();
try {
return new BigDecimal(nextString);
} catch (NumberFormatException e) {
throw new JsonParseException("Cannot parse " + nextString + "; at path " + jsonReader.getPath(), e);
}
}
}
}