muffin v7.5.11

This commit is contained in:
alydev 2026-08-17 20:29:32 +10:00
parent addf2d530f
commit 3102923ce2
522 changed files with 41082 additions and 211592 deletions

View file

@ -1,66 +1,30 @@
using System;
using System.Runtime.CompilerServices;
namespace Questionable.SeasonalDutyPaths;
internal static class PathBundleSecret
{
private static readonly byte[] A;
private static readonly byte[] A = new byte[32]
{
251, 250, 177, 24, 254, 78, 188, 97, 60, 65,
105, 80, 183, 91, 229, 181, 77, 98, 171, 136,
116, 248, 217, 243, 101, 83, 97, 216, 103, 115,
176, 184
};
private static readonly byte[] B;
private static readonly byte[] B = new byte[32]
{
10, 142, 23, 61, 218, 98, 70, 165, 207, 244,
222, 75, 120, 153, 93, 56, 21, 57, 47, 72,
65, 245, 253, 11, 142, 198, 115, 115, 202, 36,
6, 70
};
internal static byte[] Key()
{
byte[] array = new byte[A.Length];
int num = 0;
int num2 = 320407520;
while (true)
for (int i = 0; i < array.Length; i++)
{
int num3 = num2;
int num4 = 320407521;
int num5 = num3;
switch ((num5 | num4) - (num5 & num4))
{
case 3:
num2 = 320407520;
break;
case 0:
return array;
case 2:
{
int num6 = num;
byte num7 = A[num];
num4 = B[num];
num5 = num7;
int num8 = num5 + num4;
int num9 = num5 & num4;
array[num6] = (byte)(num8 - (num9 + num9));
int num10 = num;
num4 = 1;
num5 = num10;
num = (num5 | num4) + (num5 & num4);
num2 = 320407520;
break;
}
case 1:
num2 = ((num < array.Length) ? 320407523 : 320407521);
break;
}
array[i] = (byte)(A[i] ^ B[i]);
}
}
static PathBundleSecret()
{
byte[] array = new byte[32];
_206E_200C_200D_200F_202A_200D_206C_202E_200E_202C_202E_200D_202D_202C_200D_206D_202B_206A_206C_206F_200D_206C_202B_206B_200F_206B_200F_206D_206F_206B_200D_200E_200B_206E_202E_200B_200B_200C_202E_202A_202E((Array)array, (RuntimeFieldHandle)/*OpCode not supported: LdMemberToken*/);
A = array;
byte[] array2 = new byte[32];
_206E_200C_200D_200F_202A_200D_206C_202E_200E_202C_202E_200D_202D_202C_200D_206D_202B_206A_206C_206F_200D_206C_202B_206B_200F_206B_200F_206D_206F_206B_200D_200E_200B_206E_202E_200B_200B_200C_202E_202A_202E((Array)array2, (RuntimeFieldHandle)/*OpCode not supported: LdMemberToken*/);
B = array2;
}
static void _206E_200C_200D_200F_202A_200D_206C_202E_200E_202C_202E_200D_202D_202C_200D_206D_202B_206A_206C_206F_200D_206C_202B_206B_200F_206B_200F_206D_206F_206B_200D_200E_200B_206E_202E_200B_200B_200C_202E_202A_202E(Array P_0, RuntimeFieldHandle P_1)
{
RuntimeHelpers.InitializeArray(P_0, P_1);
return array;
}
}