diff --git a/Assets/AddressableAssetsData/link.xml b/Assets/AddressableAssetsData/link.xml
new file mode 100644
index 0000000..892bcad
--- /dev/null
+++ b/Assets/AddressableAssetsData/link.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/Resources/Levels/lv0.json.meta b/Assets/AddressableAssetsData/link.xml.meta
similarity index 75%
rename from Assets/Resources/Levels/lv0.json.meta
rename to Assets/AddressableAssetsData/link.xml.meta
index 3ac9306..2bb148d 100644
--- a/Assets/Resources/Levels/lv0.json.meta
+++ b/Assets/AddressableAssetsData/link.xml.meta
@@ -1,5 +1,5 @@
fileFormatVersion: 2
-guid: 35bc2628e7d24e94a9acb05b778357f0
+guid: a40f80dac4acf4d43924b05ec8c849ef
TextScriptImporter:
externalObjects: {}
userData:
diff --git a/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs b/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs
new file mode 100644
index 0000000..dd10ccb
--- /dev/null
+++ b/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs
@@ -0,0 +1,22 @@
+using System.Collections.Generic;
+using SGModule.ConfigLoader;
+
+namespace IgnoreOPS
+{
+ public class ArrowGameConfigModel : ConfigModel
+ {
+ public ArrowGameConfigModel(string key) : base(key)
+ {
+ }
+ }
+ public class ArrowGameConfig
+ {
+ public int id;
+ public string levelName;
+ public int gridRows;
+ public int gridCols;
+ public int pointSpacing;
+ public string arrows;
+ }
+
+}
\ No newline at end of file
diff --git a/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs.meta b/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs.meta
new file mode 100644
index 0000000..624108d
--- /dev/null
+++ b/Assets/ChillConnect/Define/Model/Config/Game/ArrowGameConfigModel.cs.meta
@@ -0,0 +1,3 @@
+fileFormatVersion: 2
+guid: a2de481234414c8792feee2aa26c6e47
+timeCreated: 1782804009
\ No newline at end of file
diff --git a/Assets/ChillConnect/FGUI/package/Arrow_game/btn_watch.cs b/Assets/ChillConnect/FGUI/package/Arrow_game/btn_watch.cs
index dd0bfa4..6629944 100644
--- a/Assets/ChillConnect/FGUI/package/Arrow_game/btn_watch.cs
+++ b/Assets/ChillConnect/FGUI/package/Arrow_game/btn_watch.cs
@@ -9,6 +9,7 @@ namespace FGUI.Arrow_game
{
public Controller can;
public GImage bg;
+ public GImage img_saveingpot;
public GTextField text;
public const string URL = "ui://sjl9teijrsd4g";
@@ -23,7 +24,8 @@ namespace FGUI.Arrow_game
can = GetControllerAt(0);
bg = (GImage)GetChildAt(0);
- text = (GTextField)GetChildAt(1);
+ img_saveingpot = (GImage)GetChildAt(1);
+ text = (GTextField)GetChildAt(2);
}
}
}
\ No newline at end of file
diff --git a/Assets/ChillConnect/FGUI/package/Common_01/Common_01Binder.cs b/Assets/ChillConnect/FGUI/package/Common_01/Common_01Binder.cs
index bc85e19..35e437b 100644
--- a/Assets/ChillConnect/FGUI/package/Common_01/Common_01Binder.cs
+++ b/Assets/ChillConnect/FGUI/package/Common_01/Common_01Binder.cs
@@ -10,6 +10,7 @@ namespace FGUI.Common_01
{
UIObjectFactory.SetPackageItemExtension(com_money.URL, typeof(com_money));
UIObjectFactory.SetPackageItemExtension(btn_task_pass.URL, typeof(btn_task_pass));
+ UIObjectFactory.SetPackageItemExtension(com_open_tips.URL, typeof(com_open_tips));
UIObjectFactory.SetPackageItemExtension(btn_watchAd.URL, typeof(btn_watchAd));
UIObjectFactory.SetPackageItemExtension(com_broadcast_text1.URL, typeof(com_broadcast_text1));
UIObjectFactory.SetPackageItemExtension(btn_noads.URL, typeof(btn_noads));
diff --git a/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs b/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs
new file mode 100644
index 0000000..ca47203
--- /dev/null
+++ b/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs
@@ -0,0 +1,29 @@
+/** This is an automatically generated class by FairyGUI. Please do not modify it. **/
+
+using FairyGUI;
+using FairyGUI.Utils;
+
+namespace FGUI.Common_01
+{
+ public partial class com_open_tips : GComponent
+ {
+ public GTextField text_level_limit;
+ public GGroup panel;
+ public Transition t0;
+ public const string URL = "ui://o9974uc5arocdc";
+
+ public static com_open_tips CreateInstance()
+ {
+ return (com_open_tips)UIPackage.CreateObject("Common_01", "com_open_tips");
+ }
+
+ public override void ConstructFromXML(XML xml)
+ {
+ base.ConstructFromXML(xml);
+
+ text_level_limit = (GTextField)GetChildAt(2);
+ panel = (GGroup)GetChildAt(3);
+ t0 = GetTransitionAt(0);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs.meta b/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs.meta
new file mode 100644
index 0000000..8195981
--- /dev/null
+++ b/Assets/ChillConnect/FGUI/package/Common_01/com_open_tips.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 39f9cfc14b5aa4b2e9e3d36817f63e57
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/ChillConnect/FGUI/package/Common_01/com_tips.cs b/Assets/ChillConnect/FGUI/package/Common_01/com_tips.cs
index 5682e2c..360ff51 100644
--- a/Assets/ChillConnect/FGUI/package/Common_01/com_tips.cs
+++ b/Assets/ChillConnect/FGUI/package/Common_01/com_tips.cs
@@ -21,9 +21,9 @@ namespace FGUI.Common_01
{
base.ConstructFromXML(xml);
- title = (GTextField)GetChildAt(1);
- btn_relog = (btn_yellow)GetChildAt(2);
- content = (GTextField)GetChildAt(3);
+ title = (GTextField)GetChildAt(2);
+ btn_relog = (btn_yellow)GetChildAt(3);
+ content = (GTextField)GetChildAt(4);
}
}
}
\ No newline at end of file
diff --git a/Assets/ChillConnect/FGUI/package/Lobby_03/com_hall.cs b/Assets/ChillConnect/FGUI/package/Lobby_03/com_hall.cs
index e373421..0527237 100644
--- a/Assets/ChillConnect/FGUI/package/Lobby_03/com_hall.cs
+++ b/Assets/ChillConnect/FGUI/package/Lobby_03/com_hall.cs
@@ -9,7 +9,6 @@ namespace FGUI.Lobby_03
{
public Controller state;
public GTextField text_name;
- public GButton bnt_luck_gift;
public GButton btn_petty;
public GButton btn_battle;
public GButton btn_noads;
@@ -46,32 +45,31 @@ namespace FGUI.Lobby_03
base.ConstructFromXML(xml);
state = GetControllerAt(0);
- text_name = (GTextField)GetChildAt(2);
- bnt_luck_gift = (GButton)GetChildAt(3);
- btn_petty = (GButton)GetChildAt(5);
- btn_battle = (GButton)GetChildAt(6);
- btn_noads = (GButton)GetChildAt(7);
- btn_task = (GButton)GetChildAt(8);
- btn_statement = (GButton)GetChildAt(9);
- btn_wv = (GButton)GetChildAt(10);
- left_group = (GGroup)GetChildAt(11);
- btn_failpack = (GButton)GetChildAt(13);
- btn_faq = (GButton)GetChildAt(14);
- btn_three_day = (GButton)GetChildAt(15);
- btn_shop = (btn_shop)GetChildAt(19);
- btn_saveingpot = (GButton)GetChildAt(20);
- btn_rank = (GButton)GetChildAt(21);
- btn_sign = (btn_sign)GetChildAt(22);
- btn_spin = (btn_wheel)GetChildAt(23);
- btn_setting = (GButton)GetChildAt(24);
- btn_restore = (GButton)GetChildAt(25);
- right_group = (GGroup)GetChildAt(26);
- btn_money = (GComponent)GetChildAt(27);
- btn_start = (GButton)GetChildAt(29);
- com_level = (com_level)GetChildAt(30);
- btn_gold = (GButton)GetChildAt(32);
- btn_head = (GButton)GetChildAt(33);
- top_group = (GGroup)GetChildAt(34);
+ text_name = (GTextField)GetChildAt(1);
+ btn_petty = (GButton)GetChildAt(3);
+ btn_battle = (GButton)GetChildAt(4);
+ btn_noads = (GButton)GetChildAt(5);
+ btn_task = (GButton)GetChildAt(6);
+ btn_statement = (GButton)GetChildAt(7);
+ btn_wv = (GButton)GetChildAt(8);
+ left_group = (GGroup)GetChildAt(9);
+ btn_failpack = (GButton)GetChildAt(11);
+ btn_faq = (GButton)GetChildAt(12);
+ btn_three_day = (GButton)GetChildAt(13);
+ btn_shop = (btn_shop)GetChildAt(17);
+ btn_saveingpot = (GButton)GetChildAt(18);
+ btn_rank = (GButton)GetChildAt(19);
+ btn_sign = (btn_sign)GetChildAt(20);
+ btn_spin = (btn_wheel)GetChildAt(21);
+ btn_setting = (GButton)GetChildAt(22);
+ btn_restore = (GButton)GetChildAt(23);
+ right_group = (GGroup)GetChildAt(24);
+ btn_money = (GComponent)GetChildAt(25);
+ btn_start = (GButton)GetChildAt(27);
+ com_level = (com_level)GetChildAt(28);
+ btn_gold = (GButton)GetChildAt(30);
+ btn_head = (GButton)GetChildAt(31);
+ top_group = (GGroup)GetChildAt(32);
}
}
}
\ No newline at end of file
diff --git a/Assets/ChillConnect/FGUI/package/Privacy_24/com_privacy.cs b/Assets/ChillConnect/FGUI/package/Privacy_24/com_privacy.cs
index 3cc5e34..f94aeed 100644
--- a/Assets/ChillConnect/FGUI/package/Privacy_24/com_privacy.cs
+++ b/Assets/ChillConnect/FGUI/package/Privacy_24/com_privacy.cs
@@ -8,7 +8,7 @@ namespace FGUI.Privacy_24
public partial class com_privacy : GComponent
{
public Controller show;
- public GButton btn_close;
+ public GButton btn_back;
public GList text_list;
public GTextField text_tips;
public GTextField title;
@@ -24,10 +24,10 @@ namespace FGUI.Privacy_24
base.ConstructFromXML(xml);
show = GetControllerAt(0);
- btn_close = (GButton)GetChildAt(2);
- text_list = (GList)GetChildAt(3);
- text_tips = (GTextField)GetChildAt(4);
- title = (GTextField)GetChildAt(5);
+ btn_back = (GButton)GetChildAt(1);
+ text_list = (GList)GetChildAt(2);
+ text_tips = (GTextField)GetChildAt(3);
+ title = (GTextField)GetChildAt(4);
}
}
}
\ No newline at end of file
diff --git a/Assets/ChillConnect/Helper/GameHelper.cs b/Assets/ChillConnect/Helper/GameHelper.cs
index afa1f40..c1fdc55 100644
--- a/Assets/ChillConnect/Helper/GameHelper.cs
+++ b/Assets/ChillConnect/Helper/GameHelper.cs
@@ -571,7 +571,7 @@ namespace ChillConnect
if (GameHelper.isRDExchangeMode()&&GameHelper.IsGiftSwitch())
{
string str = "
";
- return str + $"$ {ch:N0}";
+ return str + $"$ {ch:N}";
}
else
{
@@ -1077,6 +1077,17 @@ namespace ChillConnect
return 0;
}
+ public static bool IsShowOpenGameUI()
+ {
+ var vo = ConfigSystem.GetConfig().DataList;
+
+ if (GetLevel() > vo[^1].levels_need)
+ {
+ return false;
+ }
+ return true;
+ }
+
public static void SetItemNumber(int type, int value)
{
if (type == 0)
@@ -1378,13 +1389,19 @@ namespace ChillConnect
{
// if (!GameHelper.IsGiftSwitch())
var isGet = SaveData.GetSaveObject().IsGetFirstReward;
- if (loginModel.NewPlayer || !isGet)
+ if (loginModel.NewPlayer || !isGet )
{
- SaveData.GetSaveObject().IsGetFirstReward = true;
- GameHelper.GetLoginModel().NewPlayer = false;
- // PlayerPrefs.GetInt("FirstReward", 1);
- var awardNum = ConfigSystem.GetConfig().InitialNum;
- addMoney(awardNum);
+ if (IsGiftSwitch())
+ {
+ SaveData.GetSaveObject().IsGetFirstReward = true;
+ SaveData.saveDataFunc();
+ GameHelper.GetLoginModel().NewPlayer = false;
+ // PlayerPrefs.GetInt("FirstReward", 1);
+ var awardNum = ConfigSystem.GetConfig().InitialNum;
+ addMoney(awardNum);
+ GameDispatcher.Instance.Dispatch(GameMsg.Update102);
+ }
+
AddGoldNumber(50);
}
}
diff --git a/Assets/ChillConnect/Manager/HallManager.cs b/Assets/ChillConnect/Manager/HallManager.cs
index 8de0908..276e766 100644
--- a/Assets/ChillConnect/Manager/HallManager.cs
+++ b/Assets/ChillConnect/Manager/HallManager.cs
@@ -30,7 +30,7 @@ namespace ChillConnect
private ConsumeSystem consumeSys;
private bool isFirstEnter = true;
- public int enterHallTimes = 0;
+ public int openTipsTimes = 0;
public bool isShowRankView = false;
public event Action UpdateEvent;
private Camera _gameCamera;
@@ -104,7 +104,6 @@ namespace ChillConnect
{
// int index = obj != null ? (int)obj : 2;
- enterHallTimes++;
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.PlayUI_Close);
UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.RewardAniUI_Close);
AudioManager.Instance.StopBGM();
@@ -170,12 +169,12 @@ namespace ChillConnect
private void OpenWb(object obj) {
- // if (obj is not SDKOpenConfig openConfig) return;
-
+ if (obj is not SDKOpenConfig openConfig) return;
+
// SdkConfigMgr.Instance.Open(openConfig.normal, openConfig.url);
SetCameraVisible(false);
- UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.H5UI_Open, false);
+ UICtrlDispatcher.Instance.Dispatch(UICtrlMsg.H5UI_Open, openConfig);
GameDispatcher.Instance.Dispatch(GameMsg.hideBroadCast);
}
@@ -250,4 +249,12 @@ namespace ChillConnect
this.isInH5 = isInH5;
}
}
+
+ public class SDKOpenConfig
+ {
+ [JsonProperty("normal")]
+ public bool normal;
+ [JsonProperty("url")]
+ public string url;
+ }
}
diff --git a/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs b/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs
new file mode 100644
index 0000000..712587f
--- /dev/null
+++ b/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs
@@ -0,0 +1,2161 @@
+/*
+ * Copyright (C) 2011 Keijiro Takahashi
+ * Copyright (C) 2012 GREE, Inc.
+ *
+ * This software is provided 'as-is', without any express or implied
+ * warranty. In no event will the authors be held liable for any damages
+ * arising from the use of this software.
+ *
+ * Permission is granted to anyone to use this software for any purpose,
+ * including commercial applications, and to alter it and redistribute it
+ * freely, subject to the following restrictions:
+ *
+ * 1. The origin of this software must not be misrepresented; you must not
+ * claim that you wrote the original software. If you use this software
+ * in a product, an acknowledgment in the product documentation would be
+ * appreciated but is not required.
+ * 2. Altered source versions must be plainly marked as such, and must not be
+ * misrepresented as being the original software.
+ * 3. This notice may not be removed or altered from any source distribution.
+ */
+
+using UnityEngine;
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Runtime.InteropServices;
+#if UNITY_2018_4_OR_NEWER
+using UnityEngine.Networking;
+#endif
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+using System.IO;
+using System.Text.RegularExpressions;
+using UnityEngine.EventSystems;
+using UnityEngine.Rendering;
+using UnityEngine.UI;
+#endif
+#if UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+using UnityEngine.Rendering;
+using UnityEngine.UI;
+#endif
+#if UNITY_ANDROID
+using UnityEngine.Android;
+#endif
+
+using Callback = System.Action;
+
+namespace Gree.UnityWebView
+{
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ public class UnitySendMessageDispatcher
+ {
+ public static void Dispatch(string name, string method, string message)
+ {
+ GameObject obj = GameObject.Find(name);
+ if (obj != null)
+ obj.SendMessage(method, message);
+ }
+ }
+#endif
+
+ public class WebViewObject1 : MonoBehaviour
+ {
+ Callback onJS;
+ Callback onError;
+ Callback onHttpError;
+ Callback onStarted;
+ Callback onLoaded;
+ Callback onHooked;
+ Callback onCookies;
+ bool paused;
+ bool visibility;
+ bool alertDialogEnabled;
+ bool scrollBounceEnabled;
+ int mMarginLeft;
+ int mMarginTop;
+ int mMarginRight;
+ int mMarginBottom;
+ bool mMarginRelative;
+ float mMarginLeftComputed;
+ float mMarginTopComputed;
+ float mMarginRightComputed;
+ float mMarginBottomComputed;
+ bool mMarginRelativeComputed;
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ public GameObject canvas;
+ Image bg;
+ IntPtr webView;
+ Rect rect;
+ Texture2D texture;
+#if UNITY_2018_2_OR_NEWER
+#else
+ byte[] textureDataBuffer;
+#endif
+ string inputString = "";
+ bool hasFocus;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ public GameObject canvas;
+ Image bg;
+ IntPtr webView;
+ Rect rect;
+ Texture2D texture;
+ byte[] textureDataBuffer;
+ string inputString = "";
+ bool hasFocus;
+#elif UNITY_IPHONE
+ IntPtr webView;
+#elif UNITY_ANDROID
+ AndroidJavaObject webView;
+
+ bool mVisibility;
+ int mKeyboardVisibleHeight;
+ float mResumedTimestamp;
+ int mLastScreenHeight;
+#if UNITYWEBVIEW_ANDROID_ENABLE_NAVIGATOR_ONLINE
+ float androidNetworkReachabilityCheckT0 = -1.0f;
+ NetworkReachability? androidNetworkReachability0 = null;
+#endif
+ bool mAllowVideoCapture;
+ bool mAllowAudioCapture;
+
+ void OnApplicationPause(bool paused)
+ {
+ this.paused = paused;
+ if (webView == null)
+ return;
+ // if (!paused && mKeyboardVisibleHeight > 0)
+ // {
+ // webView.Call("SetVisibility", false);
+ // mResumedTimestamp = Time.realtimeSinceStartup;
+ // }
+ webView.Call("OnApplicationPause", paused);
+ }
+
+ void Update()
+ {
+ // NOTE:
+ //
+ // When OnApplicationPause(true) is called and the app is in closing, webView.Call(...)
+ // after that could cause crashes because underlying java instances were closed.
+ //
+ // This has not been cleary confirmed yet. However, as Update() is called once after
+ // OnApplicationPause(true), it is likely correct.
+ //
+ // Base on this assumption, we do nothing here if the app is paused.
+ //
+ // cf. https://github.com/gree/unity-webview/issues/991#issuecomment-1776628648
+ // cf. https://docs.unity3d.com/2020.3/Documentation/Manual/ExecutionOrder.html
+ //
+ // In between frames
+ //
+ // * OnApplicationPause: This is called at the end of the frame where the pause is detected,
+ // effectively between the normal frame updates. One extra frame will be issued after
+ // OnApplicationPause is called to allow the game to show graphics that indicate the
+ // paused state.
+ //
+ if (paused)
+ return;
+ if (webView == null)
+ return;
+#if UNITYWEBVIEW_ANDROID_ENABLE_NAVIGATOR_ONLINE
+ var t = Time.time;
+ if (t - 1.0f >= androidNetworkReachabilityCheckT0)
+ {
+ androidNetworkReachabilityCheckT0 = t;
+ var androidNetworkReachability = Application.internetReachability;
+ if (androidNetworkReachability0 != androidNetworkReachability)
+ {
+ androidNetworkReachability0 = androidNetworkReachability;
+ webView.Call("SetNetworkAvailable", androidNetworkReachability != NetworkReachability.NotReachable);
+ }
+ }
+#endif
+ if (mResumedTimestamp != 0.0f && Time.realtimeSinceStartup - mResumedTimestamp > 0.5f)
+ {
+ mResumedTimestamp = 0.0f;
+ webView.Call("SetVisibility", mVisibility);
+ }
+ if (Screen.height != mLastScreenHeight)
+ {
+ mLastScreenHeight = Screen.height;
+ webView.Call("EvaluateJS", "(function() {var e = document.activeElement; if (e != null && e.tagName.toLowerCase() != 'body') {e.blur(); e.focus();}})()");
+ }
+ for (;;) {
+ if (webView == null)
+ break;
+ var s = webView.Call("GetMessage");
+ if (s == null)
+ break;
+ var i = s.IndexOf(':', 0);
+ if (i == -1)
+ continue;
+ switch (s.Substring(0, i)) {
+ case "CallFromJS":
+ CallFromJS(s.Substring(i + 1));
+ break;
+ case "CallOnError":
+ CallOnError(s.Substring(i + 1));
+ break;
+ case "CallOnHttpError":
+ CallOnHttpError(s.Substring(i + 1));
+ break;
+ case "CallOnLoaded":
+ CallOnLoaded(s.Substring(i + 1));
+ break;
+ case "CallOnStarted":
+ CallOnStarted(s.Substring(i + 1));
+ break;
+ case "CallOnHooked":
+ CallOnHooked(s.Substring(i + 1));
+ break;
+ case "CallOnCookies":
+ CallOnCookies(s.Substring(i + 1));
+ break;
+ case "SetKeyboardVisible":
+ SetKeyboardVisible(s.Substring(i + 1));
+ break;
+ case "RequestFileChooserPermissions":
+ RequestFileChooserPermissions();
+ break;
+ }
+ }
+ }
+
+ /// Called from Java native plugin to set when the keyboard is opened
+ public void SetKeyboardVisible(string keyboardVisibleHeight)
+ {
+ if (BottomAdjustmentDisabled())
+ {
+ return;
+ }
+ var keyboardVisibleHeight0 = mKeyboardVisibleHeight;
+ var keyboardVisibleHeight1 = Int32.Parse(keyboardVisibleHeight);
+ if (keyboardVisibleHeight0 != keyboardVisibleHeight1)
+ {
+ mKeyboardVisibleHeight = keyboardVisibleHeight1;
+ SetMargins(mMarginLeft, mMarginTop, mMarginRight, mMarginBottom, mMarginRelative);
+ EvaluateJS("setTimeout(function(){if(document&&document.activeElement){document.activeElement.scrollIntoView();}}, 200);");
+ }
+ }
+
+ /// Called from Java native plugin to request permissions for the file chooser.
+ public void RequestFileChooserPermissions()
+ {
+ var permissions = new List();
+ using (var version = new AndroidJavaClass("android.os.Build$VERSION"))
+ {
+ if (version.GetStatic("SDK_INT") >= 33)
+ {
+ if (!Permission.HasUserAuthorizedPermission("android.permission.READ_MEDIA_IMAGES"))
+ {
+ permissions.Add("android.permission.READ_MEDIA_IMAGES");
+ }
+ if (!Permission.HasUserAuthorizedPermission("android.permission.READ_MEDIA_VIDEO"))
+ {
+ permissions.Add("android.permission.READ_MEDIA_VIDEO");
+ }
+ if (!Permission.HasUserAuthorizedPermission("android.permission.READ_MEDIA_AUDIO"))
+ {
+ permissions.Add("android.permission.READ_MEDIA_AUDIO");
+ }
+ }
+ else
+ {
+ if (!Permission.HasUserAuthorizedPermission(Permission.ExternalStorageRead))
+ {
+ permissions.Add(Permission.ExternalStorageRead);
+ }
+ if (!Permission.HasUserAuthorizedPermission(Permission.ExternalStorageWrite))
+ {
+ permissions.Add(Permission.ExternalStorageWrite);
+ }
+ }
+ }
+#if UNITYWEBVIEW_ANDROID_ENABLE_CAMERA
+ if (!Permission.HasUserAuthorizedPermission(Permission.Camera) && mAllowVideoCapture)
+ {
+ permissions.Add(Permission.Camera);
+ }
+#endif
+#if UNITYWEBVIEW_ANDROID_ENABLE_MICROPHONE
+ if (!Permission.HasUserAuthorizedPermission(Permission.Microphone) && mAllowAudioCapture)
+ {
+ permissions.Add(Permission.Microphone);
+ }
+#endif
+ if (permissions.Count > 0)
+ {
+#if UNITY_2020_2_OR_NEWER
+ var grantedCount = 0;
+ var deniedCount = 0;
+ var callbacks = new PermissionCallbacks();
+ callbacks.PermissionGranted += (permission) =>
+ {
+ grantedCount++;
+ if (grantedCount + deniedCount == permissions.Count)
+ {
+ StartCoroutine(CallOnRequestFileChooserPermissionsResult(grantedCount == permissions.Count));
+ }
+ };
+ callbacks.PermissionDenied += (permission) =>
+ {
+ deniedCount++;
+ if (grantedCount + deniedCount == permissions.Count)
+ {
+ StartCoroutine(CallOnRequestFileChooserPermissionsResult(grantedCount == permissions.Count));
+ }
+ };
+ callbacks.PermissionDeniedAndDontAskAgain += (permission) =>
+ {
+ deniedCount++;
+ if (grantedCount + deniedCount == permissions.Count)
+ {
+ StartCoroutine(CallOnRequestFileChooserPermissionsResult(grantedCount == permissions.Count));
+ }
+ };
+ Permission.RequestUserPermissions(permissions.ToArray(), callbacks);
+#else
+ StartCoroutine(RequestFileChooserPermissionsCoroutine(permissions.ToArray()));
+#endif
+ }
+ else
+ {
+ StartCoroutine(CallOnRequestFileChooserPermissionsResult(true));
+ }
+ }
+
+#if UNITY_2020_2_OR_NEWER
+#else
+ int mRequestPermissionPhase;
+
+ IEnumerator RequestFileChooserPermissionsCoroutine(string[] permissions)
+ {
+ foreach (var permission in permissions)
+ {
+ mRequestPermissionPhase = 0;
+ Permission.RequestUserPermission(permission);
+ // waiting permission dialog that may not be opened.
+ for (var i = 0; i < 8 && mRequestPermissionPhase == 0; i++)
+ {
+ yield return new WaitForSeconds(0.25f);
+ }
+ if (mRequestPermissionPhase == 0)
+ {
+ // permission dialog was not opened.
+ continue;
+ }
+ while (mRequestPermissionPhase == 1)
+ {
+ yield return new WaitForSeconds(0.3f);
+ }
+ }
+ yield return new WaitForSeconds(0.3f);
+ var granted = 0;
+ foreach (var permission in permissions)
+ {
+ if (Permission.HasUserAuthorizedPermission(permission))
+ {
+ granted++;
+ }
+ }
+ StartCoroutine(CallOnRequestFileChooserPermissionsResult(granted == permissions.Length));
+ }
+
+ void OnApplicationFocus(bool hasFocus)
+ {
+ if (hasFocus)
+ {
+ if (mRequestPermissionPhase == 1)
+ {
+ mRequestPermissionPhase = 2;
+ }
+ }
+ else
+ {
+ if (mRequestPermissionPhase == 0)
+ {
+ mRequestPermissionPhase = 1;
+ }
+ }
+ }
+#endif
+
+ private IEnumerator CallOnRequestFileChooserPermissionsResult(bool granted)
+ {
+ for (var i = 0; i < 3; i++)
+ {
+ yield return null;
+ }
+ webView.Call("OnRequestFileChooserPermissionsResult", granted);
+ }
+
+ public int AdjustBottomMargin(int bottom)
+ {
+ if (BottomAdjustmentDisabled())
+ {
+ return bottom;
+ }
+ else if (mKeyboardVisibleHeight <= 0)
+ {
+ return bottom;
+ }
+ else
+ {
+ int keyboardHeight = 0;
+ using (var unityClass = new AndroidJavaClass("com.unity3d.player.UnityPlayer"))
+ using (var activity = unityClass.GetStatic("currentActivity"))
+ using (var player = activity.Get("mUnityPlayer"))
+ using (var view = player.Call("getView"))
+ using (var rect = new AndroidJavaObject("android.graphics.Rect"))
+ {
+ if (view.Call("getGlobalVisibleRect", rect))
+ {
+ int h0 = rect.Get("bottom");
+ view.Call("getWindowVisibleDisplayFrame", rect);
+ int h1 = rect.Get("bottom");
+ keyboardHeight = h0 - h1;
+ }
+ }
+ return (bottom > keyboardHeight) ? bottom : keyboardHeight;
+ }
+ }
+
+ private bool BottomAdjustmentDisabled()
+ {
+#if UNITYWEBVIEW_ANDROID_FORCE_MARGIN_ADJUSTMENT_FOR_KEYBOARD
+ return false;
+#else
+ return
+ !Screen.fullScreen
+ || ((Screen.autorotateToLandscapeLeft || Screen.autorotateToLandscapeRight)
+ && (Screen.autorotateToPortrait || Screen.autorotateToPortraitUpsideDown));
+#endif
+ }
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ IntPtr webView;
+#else
+ IntPtr webView;
+#endif
+
+ void Awake()
+ {
+ alertDialogEnabled = true;
+ scrollBounceEnabled = true;
+ mMarginLeftComputed = -9999;
+ mMarginTopComputed = -9999;
+ mMarginRightComputed = -9999;
+ mMarginBottomComputed = -9999;
+ }
+
+ public bool IsKeyboardVisible
+ {
+ get
+ {
+#if !UNITY_EDITOR && UNITY_ANDROID
+ return mKeyboardVisibleHeight > 0;
+#elif !UNITY_EDITOR && UNITY_IPHONE
+ return TouchScreenKeyboard.visible;
+#else
+ return false;
+#endif
+ }
+ }
+
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetAppPath();
+ [DllImport("WebView")]
+ private static extern IntPtr _CWebViewPlugin_InitStatic(
+ bool inEditor, bool useMetal);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_IsInitialized(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern IntPtr _CWebViewPlugin_Init(
+ string gameObject, bool transparent, bool zoom, int width, int height, string ua, bool separated);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_Destroy(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SetRect(
+ IntPtr instance, int width, int height);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SetVisibility(
+ IntPtr instance, bool visibility);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_SetURLPattern(
+ IntPtr instance, string allowPattern, string denyPattern, string hookPattern);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_LoadURL(
+ IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_LoadHTML(
+ IntPtr instance, string html, string baseUrl);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_EvaluateJS(
+ IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_Progress(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_CanGoBack(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_CanGoForward(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GoBack(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GoForward(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_Reload(
+ IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SendMouseEvent(IntPtr instance, int x, int y, float deltaY, int mouseState);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SendKeyEvent(IntPtr instance, int x, int y, string keyChars, ushort keyCode, int keyState);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_Update(IntPtr instance, bool refreshBitmap, int devicePixelRatio);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_BitmapWidth(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_BitmapHeight(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_BitmapARGB(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern IntPtr _CWebViewPlugin_Render(IntPtr instance, IntPtr textureBuffer);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_AddCustomHeader(IntPtr instance, string headerKey, string headerValue);
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetCustomHeaderValue(IntPtr instance, string headerKey);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_RemoveCustomHeader(IntPtr instance, string headerKey);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCustomHeader(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCookie(string url, string name);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCookies();
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SaveCookies();
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GetCookies(IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetMessage(IntPtr instance);
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetAppPath();
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_InitStatic(bool inEditor, bool useMetal);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_IsInitialized(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern IntPtr _CWebViewPlugin_Init(string gameObject, bool transparent, bool zoom, int width, int height, string ua, bool separated);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_Destroy(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SetRect(IntPtr instance, int width, int height);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SetVisibility(IntPtr instance, bool visibility);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_SetURLPattern(IntPtr instance, string allowPattern, string denyPattern, string hookPattern);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_LoadURL(IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_LoadHTML(IntPtr instance, string html, string baseUrl);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_EvaluateJS(IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_Progress(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_CanGoBack(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern bool _CWebViewPlugin_CanGoForward(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GoBack(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GoForward(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_Reload(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SendMouseEvent(IntPtr instance, int x, int y, float deltaY, int mouseState);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SendKeyEvent(IntPtr instance, int x, int y, string keyChars, ushort keyCode, int keyState);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_Update(IntPtr instance, bool refreshBitmap, int devicePixelRatio);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_BitmapWidth(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern int _CWebViewPlugin_BitmapHeight(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_Render(IntPtr instance, IntPtr textureBuffer);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_AddCustomHeader(IntPtr instance, string headerKey, string headerValue);
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetCustomHeaderValue(IntPtr instance, string headerKey);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_RemoveCustomHeader(IntPtr instance, string headerKey);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCustomHeader(IntPtr instance);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCookie(string url, string name);
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_ClearCookies();
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_SaveCookies();
+ [DllImport("WebView")]
+ private static extern void _CWebViewPlugin_GetCookies(IntPtr instance, string url);
+ [DllImport("WebView")]
+ private static extern string _CWebViewPlugin_GetMessage(IntPtr instance);
+#elif UNITY_IPHONE
+ [DllImport("__Internal")]
+ private static extern bool _CWebViewPlugin_IsInitialized(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern IntPtr _CWebViewPlugin_Init(string gameObject, bool transparent, bool zoom, string ua, bool enableWKWebView, int wkContentMode, bool wkAllowsLinkPreview, bool wkAllowsBackForwardNavigationGestures, int radius);
+ [DllImport("__Internal")]
+ private static extern int _CWebViewPlugin_Destroy(IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetMargins(
+ IntPtr instance, float left, float top, float right, float bottom, bool relative);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetVisibility(
+ IntPtr instance, bool visibility);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetScrollbarsVisibility(
+ IntPtr instance, bool visibility);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetAlertDialogEnabled(
+ IntPtr instance, bool enabled);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetScrollBounceEnabled(
+ IntPtr instance, bool enabled);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetInteractionEnabled(
+ IntPtr instance, bool enabled);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetGoogleAppRedirectionEnabled(
+ IntPtr instance, bool enabled);
+ [DllImport("__Internal")]
+ private static extern bool _CWebViewPlugin_SetURLPattern(
+ IntPtr instance, string allowPattern, string denyPattern, string hookPattern);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_LoadURL(
+ IntPtr instance, string url);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_LoadHTML(
+ IntPtr instance, string html, string baseUrl);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_EvaluateJS(
+ IntPtr instance, string url);
+ [DllImport("__Internal")]
+ private static extern int _CWebViewPlugin_Progress(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern bool _CWebViewPlugin_CanGoBack(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern bool _CWebViewPlugin_CanGoForward(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_GoBack(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_GoForward(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_Reload(
+ IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_AddCustomHeader(IntPtr instance, string headerKey, string headerValue);
+ [DllImport("__Internal")]
+ private static extern string _CWebViewPlugin_GetCustomHeaderValue(IntPtr instance, string headerKey);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_RemoveCustomHeader(IntPtr instance, string headerKey);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_ClearCustomHeader(IntPtr instance);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_ClearCookie(string url, string name);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_ClearCookies();
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SaveCookies();
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_GetCookies(IntPtr instance, string url);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetBasicAuthInfo(IntPtr instance, string userName, string password);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_ClearCache(IntPtr instance, bool includeDiskFiles);
+ [DllImport("__Internal")]
+ private static extern void _CWebViewPlugin_SetSuspended(IntPtr instance, bool suspended);
+#elif UNITY_WEBGL
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_init(string name);
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_setMargins(string name, int left, int top, int right, int bottom);
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_setVisibility(string name, bool visible);
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_loadURL(string name, string url);
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_evaluateJS(string name, string js);
+ [DllImport("__Internal")]
+ private static extern void _gree_unity_webview_destroy(string name);
+#endif
+
+ public static bool IsWebViewAvailable()
+ {
+#if !UNITY_EDITOR && UNITY_ANDROID
+ using (var plugin = new AndroidJavaObject("net.gree.unitywebview.CWebViewPlugin"))
+ {
+ return plugin.CallStatic("IsWebViewAvailable");
+ }
+#else
+ return true;
+#endif
+ }
+
+ public bool IsInitialized()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return true;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return true;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_IsInitialized(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_IsInitialized(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return false;
+ return webView.Call("IsInitialized");
+#endif
+ }
+
+ public void Init(
+ Callback cb = null,
+ Callback err = null,
+ Callback httpErr = null,
+ Callback ld = null,
+ Callback started = null,
+ Callback hooked = null,
+ Callback cookies = null,
+ bool transparent = false,
+ bool zoom = true,
+ string ua = "",
+ int radius = 0,
+ // android
+ int androidForceDarkMode = 0, // 0: follow system setting, 1: force dark off, 2: force dark on
+ // ios
+ bool enableWKWebView = true,
+ int wkContentMode = 0, // 0: recommended, 1: mobile, 2: desktop
+ bool wkAllowsLinkPreview = true,
+ bool wkAllowsBackForwardNavigationGestures = true,
+ // editor
+ bool separated = false)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ _CWebViewPlugin_InitStatic(
+ Application.platform == RuntimePlatform.OSXEditor,
+ SystemInfo.graphicsDeviceType == GraphicsDeviceType.Metal);
+#endif
+ onJS = cb;
+ onError = err;
+ onHttpError = httpErr;
+ onStarted = started;
+ onLoaded = ld;
+ onHooked = hooked;
+ onCookies = cookies;
+#if UNITY_WEBGL
+#if !UNITY_EDITOR
+ _gree_unity_webview_init(name);
+#endif
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.init", name);
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ Debug.LogError("Webview is not supported on this platform.");
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ _CWebViewPlugin_InitStatic(
+ Application.platform == RuntimePlatform.WindowsEditor,
+ SystemInfo.graphicsDeviceType == GraphicsDeviceType.Direct3D11);
+ webView = _CWebViewPlugin_Init(
+ name,
+ transparent,
+ zoom,
+ Screen.width,
+ Screen.height,
+ ua
+#if UNITY_EDITOR
+ , separated
+#else
+ , false
+#endif
+ );
+ rect = new Rect(0, 0, Screen.width, Screen.height);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ {
+ var uri = new Uri(_CWebViewPlugin_GetAppPath());
+ var info = File.ReadAllText(uri.LocalPath + "Contents/Info.plist");
+ if (Regex.IsMatch(info, @"CFBundleGetInfoString\s*Unity version [5-9]\.[3-9]")
+ && !Regex.IsMatch(info, @"NSAppTransportSecurity\s*\s*NSAllowsArbitraryLoads\s*\s*")) {
+ Debug.LogWarning("WebViewObject: NSAppTransportSecurity isn't configured to allow HTTP. If you need to allow any HTTP access, please shutdown Unity and invoke:\n/usr/libexec/PlistBuddy -c \"Add NSAppTransportSecurity:NSAllowsArbitraryLoads bool true\" /Applications/Unity/Unity.app/Contents/Info.plist");
+ }
+ }
+#if UNITY_EDITOR_OSX
+ // if (string.IsNullOrEmpty(ua)) {
+ // ua = @"Mozilla/5.0 (iPhone; CPU iPhone OS 7_1_2 like Mac OS X) AppleWebKit/537.51.2 (KHTML, like Gecko) Version/7.0 Mobile/11D257 Safari/9537.53";
+ // }
+#endif
+ webView = _CWebViewPlugin_Init(
+ name,
+ transparent,
+ zoom,
+ Screen.width,
+ Screen.height,
+ ua
+#if UNITY_EDITOR
+ , separated
+#else
+ , false
+#endif
+ );
+ rect = new Rect(0, 0, Screen.width, Screen.height);
+#elif UNITY_IPHONE
+ webView = _CWebViewPlugin_Init(name, transparent, zoom, ua, enableWKWebView, wkContentMode, wkAllowsLinkPreview, wkAllowsBackForwardNavigationGestures, radius);
+#elif UNITY_ANDROID
+ webView = new AndroidJavaObject("net.gree.unitywebview.CWebViewPlugin");
+#if UNITY_2021_1_OR_NEWER
+ webView.SetStatic("forceBringToFront", true);
+#endif
+ webView.Call("Init", name, transparent, zoom, androidForceDarkMode, ua, radius);
+#else
+ Debug.LogError("Webview is not supported on this platform.");
+#endif
+ }
+
+ protected virtual void OnDestroy()
+ {
+#if UNITY_WEBGL
+#if !UNITY_EDITOR
+ _gree_unity_webview_destroy(name);
+#endif
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.destroy", name);
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (bg != null)
+ {
+ Destroy(bg.gameObject);
+ }
+ if (webView == IntPtr.Zero)
+ return;
+ var ptr = webView;
+ webView = IntPtr.Zero;
+ _CWebViewPlugin_Destroy(ptr);
+ Destroy(texture);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ if (bg != null) {
+ Destroy(bg.gameObject);
+ }
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_Destroy(webView);
+ webView = IntPtr.Zero;
+ Destroy(texture);
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_Destroy(webView);
+ webView = IntPtr.Zero;
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("Destroy");
+ webView.Dispose();
+ webView = null;
+#endif
+ }
+
+ public void Pause()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ //TODO: UNSUPPORTED
+#elif UNITY_IPHONE
+ // NOTE: this suspends media playback only.
+ if (webView == null)
+ return;
+ _CWebViewPlugin_SetSuspended(webView, true);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("Pause");
+#endif
+ }
+
+ public void Resume()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN || UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ //TODO: UNSUPPORTED
+#elif UNITY_IPHONE
+ // NOTE: this resumes media playback only.
+ _CWebViewPlugin_SetSuspended(webView, false);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("Resume");
+#endif
+ }
+
+ // Use this function instead of SetMargins to easily set up a centered window
+ // NOTE: for historical reasons, `center` means the lower left corner and positive y values extend up.
+ public void SetCenterPositionWithScale(Vector2 center, Vector2 scale)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ float left = (Screen.width - scale.x) / 2.0f + center.x;
+ float right = Screen.width - (left + scale.x);
+ float bottom = (Screen.height - scale.y) / 2.0f + center.y;
+ float top = Screen.height - (bottom + scale.y);
+ SetMargins((int)left, (int)top, (int)right, (int)bottom);
+#else
+ float left = (Screen.width - scale.x) / 2.0f + center.x;
+ float right = Screen.width - (left + scale.x);
+ float bottom = (Screen.height - scale.y) / 2.0f + center.y;
+ float top = Screen.height - (bottom + scale.y);
+ SetMargins((int)left, (int)top, (int)right, (int)bottom);
+#endif
+ }
+
+ public void SetMargins(int left, int top, int right, int bottom, bool relative = false)
+ {
+#if UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+#elif UNITY_WEBPLAYER || UNITY_WEBGL
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ if (webView == IntPtr.Zero)
+ return;
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+#endif
+
+ mMarginLeft = left;
+ mMarginTop = top;
+ mMarginRight = right;
+ mMarginBottom = bottom;
+ mMarginRelative = relative;
+ float ml, mt, mr, mb;
+#if UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ ml = left;
+ mt = top;
+ mr = right;
+ mb = bottom;
+#elif UNITY_WEBPLAYER || UNITY_WEBGL
+ ml = left;
+ mt = top;
+ mr = right;
+ mb = bottom;
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ ml = left;
+ mt = top;
+ mr = right;
+ mb = bottom;
+#elif UNITY_IPHONE
+ if (relative)
+ {
+ float w = (float)Screen.width;
+ float h = (float)Screen.height;
+ ml = left / w;
+ mt = top / h;
+ mr = right / w;
+ mb = bottom / h;
+ }
+ else
+ {
+ ml = left;
+ mt = top;
+ mr = right;
+ mb = bottom;
+ }
+#elif UNITY_ANDROID
+ if (relative)
+ {
+ float w = (float)Screen.width;
+ float h = (float)Screen.height;
+ int iw = Display.main.systemWidth;
+ int ih = Display.main.systemHeight;
+ if (!Screen.fullScreen)
+ {
+ using (var unityClass = new AndroidJavaClass("com.unity3d.player.UnityPlayer"))
+ using (var activity = unityClass.GetStatic("currentActivity"))
+ using (var player = activity.Get("mUnityPlayer"))
+ using (var view = player.Call("getView"))
+ using (var rect = new AndroidJavaObject("android.graphics.Rect"))
+ {
+ view.Call("getDrawingRect", rect);
+ iw = rect.Call("width");
+ ih = rect.Call("height");
+ }
+ }
+ ml = left / w * iw;
+ mt = top / h * ih;
+ mr = right / w * iw;
+ mb = AdjustBottomMargin((int)(bottom / h * ih));
+ }
+ else
+ {
+ ml = left;
+ mt = top;
+ mr = right;
+ mb = AdjustBottomMargin(bottom);
+ }
+#endif
+ bool r = relative;
+
+ if (ml == mMarginLeftComputed
+ && mt == mMarginTopComputed
+ && mr == mMarginRightComputed
+ && mb == mMarginBottomComputed
+ && r == mMarginRelativeComputed)
+ {
+ return;
+ }
+ mMarginLeftComputed = ml;
+ mMarginTopComputed = mt;
+ mMarginRightComputed = mr;
+ mMarginBottomComputed = mb;
+ mMarginRelativeComputed = r;
+
+#if UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ int width = (int)(Screen.width - (ml + mr));
+ int height = (int)(Screen.height - (mb + mt));
+ _CWebViewPlugin_SetRect(webView, width, height);
+ rect = new Rect(left, bottom, width, height);
+ UpdateBGTransform();
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.setMargins", name, (int)ml, (int)mt, (int)mr, (int)mb);
+#elif UNITY_WEBGL && !UNITY_EDITOR
+ _gree_unity_webview_setMargins(name, (int)ml, (int)mt, (int)mr, (int)mb);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ int width = (int)(Screen.width - (ml + mr));
+ int height = (int)(Screen.height - (mb + mt));
+ _CWebViewPlugin_SetRect(webView, width, height);
+ rect = new Rect(left, bottom, width, height);
+ UpdateBGTransform();
+#elif UNITY_IPHONE
+ _CWebViewPlugin_SetMargins(webView, ml, mt, mr, mb, r);
+#elif UNITY_ANDROID
+ webView.Call("SetMargins", (int)ml, (int)mt, (int)mr, (int)mb);
+#endif
+ }
+
+ public void SetVisibility(bool v)
+ {
+#if UNITY_EDITOR || UNITY_STANDALONE
+ if (bg != null)
+ {
+ bg.gameObject.SetActive(v);
+ }
+#endif
+ if (GetVisibility() && !v)
+ {
+ EvaluateJS("if (document && document.activeElement) document.activeElement.blur();");
+ }
+#if UNITY_WEBGL
+#if !UNITY_EDITOR
+ _gree_unity_webview_setVisibility(name, v);
+#endif
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.setVisibility", name, v);
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetVisibility(webView, v);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetVisibility(webView, v);
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetVisibility(webView, v);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ mVisibility = v;
+ webView.Call("SetVisibility", v);
+#endif
+ visibility = v;
+ }
+
+ public bool GetVisibility()
+ {
+ return visibility;
+ }
+
+ public void SetScrollbarsVisibility(bool v)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetScrollbarsVisibility(webView, v);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("SetScrollbarsVisibility", v);
+#else
+ // TODO: UNSUPPORTED
+#endif
+ }
+
+ public void SetInteractionEnabled(bool enabled)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetInteractionEnabled(webView, enabled);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("SetInteractionEnabled", enabled);
+#else
+ // TODO: UNSUPPORTED
+#endif
+ }
+
+ public void SetGoogleAppRedirectionEnabled(bool enabled)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetGoogleAppRedirectionEnabled(webView, enabled);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("SetGoogleAppRedirectionEnabled", enabled);
+#else
+ // TODO: UNSUPPORTED
+#endif
+ }
+
+ public void SetAlertDialogEnabled(bool e)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetAlertDialogEnabled(webView, e);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("SetAlertDialogEnabled", e);
+#else
+ // TODO: UNSUPPORTED
+#endif
+ alertDialogEnabled = e;
+ }
+
+ public bool GetAlertDialogEnabled()
+ {
+ return alertDialogEnabled;
+ }
+
+ public void SetScrollBounceEnabled(bool e)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetScrollBounceEnabled(webView, e);
+#elif UNITY_ANDROID
+ // TODO: UNSUPPORTED
+#else
+ // TODO: UNSUPPORTED
+#endif
+ scrollBounceEnabled = e;
+ }
+
+ public bool GetScrollBounceEnabled()
+ {
+ return scrollBounceEnabled;
+ }
+
+ public void SetCameraAccess(bool allowed)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ // TODO: UNSUPPORTED
+#elif UNITY_ANDROID
+#if UNITYWEBVIEW_ANDROID_ENABLE_CAMERA
+ if (webView == null)
+ return;
+ webView.Call("SetCameraAccess", allowed);
+ mAllowVideoCapture = allowed;
+#endif
+#else
+ // TODO: UNSUPPORTED
+#endif
+ }
+
+ public void SetMicrophoneAccess(bool allowed)
+ {
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ // TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ // TODO: WebView2 not implemented in native plugin
+#elif UNITY_IPHONE
+ // TODO: UNSUPPORTED
+#elif UNITY_ANDROID
+#if UNITYWEBVIEW_ANDROID_ENABLE_MICROPHONE
+ if (webView == null)
+ return;
+ webView.Call("SetMicrophoneAccess", allowed);
+ mAllowAudioCapture = allowed;
+#endif
+#else
+ // TODO: UNSUPPORTED
+#endif
+ }
+
+ public bool SetURLPattern(string allowPattern, string denyPattern, string hookPattern)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_SetURLPattern(webView, allowPattern, denyPattern, hookPattern);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_SetURLPattern(webView, allowPattern, denyPattern, hookPattern);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return false;
+ return webView.Call("SetURLPattern", allowPattern, denyPattern, hookPattern);
+#endif
+ }
+
+ public void LoadURL(string url)
+ {
+ if (string.IsNullOrEmpty(url))
+ return;
+#if UNITY_WEBGL
+#if !UNITY_EDITOR
+ _gree_unity_webview_loadURL(name, url);
+#endif
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.loadURL", name, url);
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_LoadURL(webView, url);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_LoadURL(webView, url);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("LoadURL", url);
+#endif
+ }
+
+ public void LoadHTML(string html, string baseUrl)
+ {
+ if (string.IsNullOrEmpty(html))
+ return;
+ if (string.IsNullOrEmpty(baseUrl))
+ baseUrl = "";
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_LoadHTML(webView, html, baseUrl);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_LoadHTML(webView, html, baseUrl);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("LoadHTML", html, baseUrl);
+#endif
+ }
+
+ public void EvaluateJS(string js)
+ {
+#if UNITY_WEBGL
+#if !UNITY_EDITOR
+ _gree_unity_webview_evaluateJS(name, js);
+#endif
+#elif UNITY_WEBPLAYER
+ Application.ExternalCall("unityWebView.evaluateJS", name, js);
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_EvaluateJS(webView, js);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_EvaluateJS(webView, js);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("EvaluateJS", js);
+#endif
+ }
+
+ public int Progress()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return 0;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return 0;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return 0;
+ return _CWebViewPlugin_Progress(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return 0;
+ return _CWebViewPlugin_Progress(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return 0;
+ return webView.Get("progress");
+#endif
+ }
+
+ public bool CanGoBack()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_CanGoBack(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_CanGoBack(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return false;
+ return webView.Get("canGoBack");
+#endif
+ }
+
+ public bool CanGoForward()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return false;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_CanGoForward(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return false;
+ return _CWebViewPlugin_CanGoForward(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return false;
+ return webView.Get("canGoForward");
+#endif
+ }
+
+ public void GoBack()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GoBack(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GoBack(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("GoBack");
+#endif
+ }
+
+ public void GoForward()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GoForward(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GoForward(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("GoForward");
+#endif
+ }
+
+ public void Reload()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_Reload(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_Reload(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("Reload");
+#endif
+ }
+
+ public void CallOnError(string error)
+ {
+ if (onError != null)
+ {
+ onError(error);
+ }
+ }
+
+ public void CallOnHttpError(string error)
+ {
+ if (onHttpError != null)
+ {
+ onHttpError(error);
+ }
+ }
+
+ public void CallOnStarted(string url)
+ {
+ if (onStarted != null)
+ {
+ onStarted(url);
+ }
+ }
+
+ public void CallOnLoaded(string url)
+ {
+ if (onLoaded != null)
+ {
+ onLoaded(url);
+ }
+ }
+
+ public void CallFromJS(string message)
+ {
+ if (onJS != null)
+ {
+#if !UNITY_ANDROID
+#if UNITY_2018_4_OR_NEWER
+ message = UnityWebRequest.UnEscapeURL(message);
+#else // UNITY_2018_4_OR_NEWER
+ message = WWW.UnEscapeURL(message);
+#endif // UNITY_2018_4_OR_NEWER
+#endif // !UNITY_ANDROID
+ onJS(message);
+ }
+ }
+
+ public void CallOnHooked(string message)
+ {
+ if (onHooked != null)
+ {
+#if !UNITY_ANDROID
+#if UNITY_2018_4_OR_NEWER
+ message = UnityWebRequest.UnEscapeURL(message);
+#else // UNITY_2018_4_OR_NEWER
+ message = WWW.UnEscapeURL(message);
+#endif // UNITY_2018_4_OR_NEWER
+#endif // !UNITY_ANDROID
+ onHooked(message);
+ }
+ }
+
+ public void CallOnCookies(string cookies)
+ {
+ if (onCookies != null)
+ {
+ onCookies(cookies);
+ }
+ }
+
+ public void AddCustomHeader(string headerKey, string headerValue)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_AddCustomHeader(webView, headerKey, headerValue);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_AddCustomHeader(webView, headerKey, headerValue);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("AddCustomHeader", headerKey, headerValue);
+#endif
+ }
+
+ public string GetCustomHeaderValue(string headerKey)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+ return null;
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+ return null;
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return null;
+ return _CWebViewPlugin_GetCustomHeaderValue(webView, headerKey);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return null;
+ return _CWebViewPlugin_GetCustomHeaderValue(webView, headerKey);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return null;
+ return webView.Call("GetCustomHeaderValue", headerKey);
+#endif
+ }
+
+ public void RemoveCustomHeader(string headerKey)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_RemoveCustomHeader(webView, headerKey);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_RemoveCustomHeader(webView, headerKey);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("RemoveCustomHeader", headerKey);
+#endif
+ }
+
+ public void ClearCustomHeader()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_ClearCustomHeader(webView);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_ClearCustomHeader(webView);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("ClearCustomHeader");
+#endif
+ }
+
+ public void ClearCookie(string url, string name)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ _CWebViewPlugin_ClearCookie(url, name);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_ClearCookie(url, name);
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("ClearCookie", url, name);
+#endif
+ }
+
+ public void ClearCookies()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ _CWebViewPlugin_ClearCookies();
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_ClearCookies();
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("ClearCookies");
+#endif
+ }
+
+
+ public void SaveCookies()
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ _CWebViewPlugin_SaveCookies();
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SaveCookies();
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("SaveCookies");
+#endif
+ }
+
+
+ public void GetCookies(string url)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GetCookies(webView, url);
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX || UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_GetCookies(webView, url);
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("GetCookies", url);
+#else
+ //TODO: UNSUPPORTED
+#endif
+ }
+
+ public void SetBasicAuthInfo(string userName, string password)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ //TODO: WebView2 basic auth not implemented in native plugin
+#elif UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ //TODO: UNSUPPORTED
+#elif UNITY_IPHONE
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_SetBasicAuthInfo(webView, userName, password);
+#elif UNITY_ANDROID
+ if (webView == null)
+ return;
+ webView.Call("SetBasicAuthInfo", userName, password);
+#endif
+ }
+
+ public void ClearCache(bool includeDiskFiles)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ //TODO: WebView2 cache clear not implemented in native plugin
+#elif UNITY_IPHONE && !UNITY_EDITOR
+ if (webView == IntPtr.Zero)
+ return;
+ _CWebViewPlugin_ClearCache(webView, includeDiskFiles);
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("ClearCache", includeDiskFiles);
+#endif
+ }
+
+
+ public void SetTextZoom(int textZoom)
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ //TODO: WebView2 text zoom not implemented in native plugin
+#elif UNITY_IPHONE && !UNITY_EDITOR
+ //TODO: UNSUPPORTED
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("SetTextZoom", textZoom);
+#endif
+ }
+
+ public void SetMixedContentMode(int mode) // 0: MIXED_CONTENT_ALWAYS_ALLOW, 1: MIXED_CONTENT_NEVER_ALLOW, 2: MIXED_CONTENT_COMPATIBILITY_MODE
+ {
+#if UNITY_WEBPLAYER || UNITY_WEBGL
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_LINUX || UNITY_SERVER
+ //TODO: UNSUPPORTED
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ //TODO: WebView2 mixed content mode not implemented in native plugin
+#elif UNITY_IPHONE && !UNITY_EDITOR
+ //TODO: UNSUPPORTED
+#elif UNITY_ANDROID && !UNITY_EDITOR
+ if (webView == null)
+ return;
+ webView.Call("SetMixedContentMode", mode);
+#endif
+ }
+
+#if UNITY_EDITOR_OSX || UNITY_STANDALONE_OSX
+ void OnApplicationFocus(bool focus)
+ {
+ if (!focus)
+ {
+ hasFocus = false;
+ }
+ }
+
+ void Start()
+ {
+ if (canvas != null)
+ {
+ var g = new GameObject(gameObject.name + "BG");
+ g.transform.parent = canvas.transform;
+ bg = g.AddComponent();
+ UpdateBGTransform();
+ }
+ }
+
+ void Update()
+ {
+ if (bg != null) {
+ bg.transform.SetAsLastSibling();
+ }
+ if (hasFocus) {
+ inputString += Input.inputString;
+ }
+ for (;;) {
+ if (webView == IntPtr.Zero)
+ break;
+ string s = _CWebViewPlugin_GetMessage(webView);
+ if (s == null)
+ break;
+ var i = s.IndexOf(':', 0);
+ if (i == -1)
+ continue;
+ switch (s.Substring(0, i)) {
+ case "CallFromJS":
+ CallFromJS(s.Substring(i + 1));
+ break;
+ case "CallOnError":
+ CallOnError(s.Substring(i + 1));
+ break;
+ case "CallOnHttpError":
+ CallOnHttpError(s.Substring(i + 1));
+ break;
+ case "CallOnLoaded":
+ CallOnLoaded(s.Substring(i + 1));
+ break;
+ case "CallOnStarted":
+ CallOnStarted(s.Substring(i + 1));
+ break;
+ case "CallOnHooked":
+ CallOnHooked(s.Substring(i + 1));
+ break;
+ case "CallOnCookies":
+ CallOnCookies(s.Substring(i + 1));
+ break;
+ }
+ }
+ if (webView == IntPtr.Zero || !visibility)
+ return;
+ bool refreshBitmap = (Time.frameCount % bitmapRefreshCycle == 0);
+ _CWebViewPlugin_Update(webView, refreshBitmap, devicePixelRatio);
+ if (refreshBitmap) {
+ var w = _CWebViewPlugin_BitmapWidth(webView);
+ var h = _CWebViewPlugin_BitmapHeight(webView);
+ var f = (_CWebViewPlugin_BitmapARGB(webView)) ? TextureFormat.ARGB32 : TextureFormat.RGBA32;
+ if (w > 0 && h > 0) {
+ if (texture == null || texture.width != w || texture.height != h) {
+ bool isLinearSpace = QualitySettings.activeColorSpace == ColorSpace.Linear;
+ texture = new Texture2D(w, h, f, false, !isLinearSpace);
+ texture.filterMode = FilterMode.Bilinear;
+ texture.wrapMode = TextureWrapMode.Clamp;
+#if UNITY_2018_2_OR_NEWER
+#else
+ textureDataBuffer = new byte[w * h * 4];
+#endif
+ }
+ if (texture != null) {
+#if UNITY_2018_2_OR_NEWER
+ var ptr = _CWebViewPlugin_Render(webView, IntPtr.Zero);
+ if (ptr != IntPtr.Zero) {
+ texture.LoadRawTextureData(ptr, w * h * 4);
+ texture.Apply();
+ }
+#else
+ var gch = GCHandle.Alloc(textureDataBuffer, GCHandleType.Pinned);
+ _CWebViewPlugin_Render(webView, gch.AddrOfPinnedObject());
+ gch.Free();
+ texture.LoadRawTextureData(textureDataBuffer);
+ texture.Apply();
+#endif
+ }
+ }
+ }
+ }
+
+ void UpdateBGTransform()
+ {
+ if (bg != null) {
+ bg.rectTransform.anchorMin = Vector2.zero;
+ bg.rectTransform.anchorMax = Vector2.zero;
+ bg.rectTransform.pivot = Vector2.zero;
+ bg.rectTransform.position = rect.min;
+ bg.rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal, rect.size.x);
+ bg.rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical, rect.size.y);
+ }
+ }
+
+ public int bitmapRefreshCycle = 1;
+ public int devicePixelRatio = 1;
+
+ void OnGUI()
+ {
+ if (webView == IntPtr.Zero || !visibility)
+ return;
+ switch (Event.current.type) {
+ case EventType.MouseDown:
+ case EventType.MouseUp:
+ hasFocus = rect.Contains(Input.mousePosition);
+ break;
+ }
+ switch (Event.current.type) {
+ case EventType.MouseMove:
+ case EventType.MouseDown:
+ case EventType.MouseDrag:
+ case EventType.MouseUp:
+ case EventType.ScrollWheel:
+ if (hasFocus) {
+ Vector3 p;
+ p.x = Input.mousePosition.x - rect.x;
+ p.y = Input.mousePosition.y - rect.y;
+ {
+ int mouseState = 0;
+ if (Input.GetButtonDown("Fire1")) {
+ mouseState = 1;
+ } else if (Input.GetButton("Fire1")) {
+ mouseState = 2;
+ } else if (Input.GetButtonUp("Fire1")) {
+ mouseState = 3;
+ }
+ //_CWebViewPlugin_SendMouseEvent(webView, (int)p.x, (int)p.y, Input.GetAxis("Mouse ScrollWheel"), mouseState);
+ _CWebViewPlugin_SendMouseEvent(webView, (int)p.x, (int)p.y, Input.mouseScrollDelta.y, mouseState);
+ }
+ }
+ break;
+ case EventType.Repaint:
+ while (!string.IsNullOrEmpty(inputString)) {
+ var keyChars = inputString.Substring(0, 1);
+ var keyCode = (ushort)inputString[0];
+ inputString = inputString.Substring(1);
+ if (!string.IsNullOrEmpty(keyChars) || keyCode != 0) {
+ Vector3 p;
+ p.x = Input.mousePosition.x - rect.x;
+ p.y = Input.mousePosition.y - rect.y;
+ _CWebViewPlugin_SendKeyEvent(webView, (int)p.x, (int)p.y, keyChars, keyCode, 1);
+ }
+ }
+ if (texture != null) {
+ Matrix4x4 m = GUI.matrix;
+ GUI.matrix
+ = Matrix4x4.TRS(
+ new Vector3(0, Screen.height, 0),
+ Quaternion.identity,
+ new Vector3(1, -1, 1));
+ Graphics.DrawTexture(rect, texture);
+ GUI.matrix = m;
+ }
+ break;
+ }
+ }
+#elif UNITY_EDITOR_WIN || UNITY_STANDALONE_WIN
+ void OnApplicationFocus(bool focus)
+ {
+ if (!focus)
+ {
+ hasFocus = false;
+ }
+ }
+
+ void Start()
+ {
+ if (canvas != null)
+ {
+ var g = new GameObject(gameObject.name + "BG");
+ g.transform.parent = canvas.transform;
+ bg = g.AddComponent();
+ UpdateBGTransform();
+ }
+ }
+
+ void Update()
+ {
+ if (bg != null)
+ {
+ bg.transform.SetAsLastSibling();
+ }
+ if (hasFocus)
+ {
+ inputString += Input.inputString;
+ }
+ for (;;)
+ {
+ if (webView == IntPtr.Zero)
+ break;
+ string s = _CWebViewPlugin_GetMessage(webView);
+ if (s == null)
+ break;
+ var i = s.IndexOf(':', 0);
+ if (i == -1)
+ continue;
+ switch (s.Substring(0, i))
+ {
+ case "CallFromJS":
+ CallFromJS(s.Substring(i + 1));
+ break;
+ case "CallOnError":
+ CallOnError(s.Substring(i + 1));
+ break;
+ case "CallOnHttpError":
+ CallOnHttpError(s.Substring(i + 1));
+ break;
+ case "CallOnLoaded":
+ CallOnLoaded(s.Substring(i + 1));
+ break;
+ case "CallOnStarted":
+ CallOnStarted(s.Substring(i + 1));
+ break;
+ case "CallOnHooked":
+ CallOnHooked(s.Substring(i + 1));
+ break;
+ case "CallOnCookies":
+ CallOnCookies(s.Substring(i + 1));
+ break;
+ }
+ }
+ if (webView == IntPtr.Zero || !visibility)
+ return;
+ bool refreshBitmap = (Time.frameCount % bitmapRefreshCycle == 0);
+ _CWebViewPlugin_Update(webView, refreshBitmap, devicePixelRatio);
+ if (refreshBitmap)
+ {
+ var w = _CWebViewPlugin_BitmapWidth(webView);
+ var h = _CWebViewPlugin_BitmapHeight(webView);
+ if (w > 0 && h > 0)
+ {
+ if (texture == null || texture.width != w || texture.height != h)
+ {
+ bool isLinearSpace = QualitySettings.activeColorSpace == ColorSpace.Linear;
+ texture = new Texture2D(w, h, TextureFormat.RGBA32, false, !isLinearSpace);
+ texture.filterMode = FilterMode.Bilinear;
+ texture.wrapMode = TextureWrapMode.Clamp;
+ textureDataBuffer = new byte[w * h * 4];
+ }
+ if (textureDataBuffer != null && textureDataBuffer.Length > 0)
+ {
+ var gch = GCHandle.Alloc(textureDataBuffer, GCHandleType.Pinned);
+ _CWebViewPlugin_Render(webView, gch.AddrOfPinnedObject());
+ gch.Free();
+ texture.LoadRawTextureData(textureDataBuffer);
+ texture.Apply();
+ }
+ }
+ }
+ }
+
+ void UpdateBGTransform()
+ {
+ if (bg != null)
+ {
+ bg.rectTransform.anchorMin = Vector2.zero;
+ bg.rectTransform.anchorMax = Vector2.zero;
+ bg.rectTransform.pivot = Vector2.zero;
+ bg.rectTransform.position = rect.min;
+ bg.rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Horizontal, rect.size.x);
+ bg.rectTransform.SetSizeWithCurrentAnchors(RectTransform.Axis.Vertical, rect.size.y);
+ }
+ }
+
+ // On Windows, CapturePreview is heavy; default 10 = refresh every 10th frame for better FPS.
+ public int bitmapRefreshCycle = 10;
+ public int devicePixelRatio = 1;
+
+ void OnGUI()
+ {
+ if (webView == IntPtr.Zero || !visibility)
+ return;
+ switch (Event.current.type)
+ {
+ case EventType.MouseDown:
+ case EventType.MouseUp:
+ hasFocus = rect.Contains(Input.mousePosition);
+ break;
+ }
+ switch (Event.current.type)
+ {
+ case EventType.MouseMove:
+ case EventType.MouseDown:
+ case EventType.MouseDrag:
+ case EventType.MouseUp:
+ case EventType.ScrollWheel:
+ if (hasFocus)
+ {
+ Vector3 p;
+ p.x = Input.mousePosition.x - rect.x;
+ p.y = Input.mousePosition.y - rect.y;
+ int mouseState = 0;
+ if (Input.GetButtonDown("Fire1"))
+ mouseState = 1;
+ else if (Input.GetButton("Fire1"))
+ mouseState = 2;
+ else if (Input.GetButtonUp("Fire1"))
+ mouseState = 3;
+ _CWebViewPlugin_SendMouseEvent(webView, (int)p.x, (int)p.y, Input.mouseScrollDelta.y, mouseState);
+ }
+ break;
+ case EventType.Repaint:
+ while (!string.IsNullOrEmpty(inputString))
+ {
+ var keyChars = inputString.Substring(0, 1);
+ var keyCode = (ushort)inputString[0];
+ inputString = inputString.Substring(1);
+ if (!string.IsNullOrEmpty(keyChars) || keyCode != 0)
+ {
+ Vector3 p;
+ p.x = Input.mousePosition.x - rect.x;
+ p.y = Input.mousePosition.y - rect.y;
+ _CWebViewPlugin_SendKeyEvent(webView, (int)p.x, (int)p.y, keyChars, keyCode, 1);
+ }
+ }
+ if (texture != null)
+ {
+ Matrix4x4 m = GUI.matrix;
+ GUI.matrix = Matrix4x4.TRS(new Vector3(0, Screen.height, 0), Quaternion.identity, new Vector3(1, -1, 1));
+ Graphics.DrawTexture(rect, texture);
+ GUI.matrix = m;
+ }
+ break;
+ }
+ }
+#endif
+ }
+}
diff --git a/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs.meta b/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs.meta
new file mode 100644
index 0000000..67c19ff
--- /dev/null
+++ b/Assets/NCWWA6A0SDK/ThirdParty/WebView/WebViewObject1.cs.meta
@@ -0,0 +1,11 @@
+fileFormatVersion: 2
+guid: 4b8c4b151163b44e39d38a9347890cb2
+MonoImporter:
+ externalObjects: {}
+ serializedVersion: 2
+ defaultReferences: []
+ executionOrder: 0
+ icon: {instanceID: 0}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/OPS/Obfuscator/Log/iOS.txt b/Assets/OPS/Obfuscator/Log/iOS.txt
index 71e4a7b..012b14f 100644
--- a/Assets/OPS/Obfuscator/Log/iOS.txt
+++ b/Assets/OPS/Obfuscator/Log/iOS.txt
@@ -38,8 +38,8 @@
[Info][OPS.OBF][OnProcess_Assets] Process component Analyse Unity Animation Methods
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Iterate components in loaded build scene 'Assets/Scenes/MainScene.unity'.
-[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 16 Root GameObjects in Scene Assets/Scenes/MainScene.unity
-[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 190 Components in Scene Assets/Scenes/MainScene.unity
+[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 17 Root GameObjects in Scene Assets/Scenes/MainScene.unity
+[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found 192 Components in Scene Assets/Scenes/MainScene.unity
[Info][OPS.OBF][OnAnalyse_Component_Scenes] Process component Analyse Unity Event Component
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'GameCamera' of type 'UnityEngine.Transform'.
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'GameCamera' of type 'UnityEngine.Camera'.
@@ -251,6 +251,8 @@
at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.PreBuildPipeline.Process_Component_Analyse_And_Manipulate (System.Collections.Generic.List`1[T] _ComponentList) [0x00086] in :0
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'GameObject' of type 'UnityEngine.Transform'.
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'GameObject' of type 'InputHelper'.
+[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'FreeWebViewManager' of type 'UnityEngine.Transform'.
+[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'FreeWebViewManager' of type 'FreeWebViewManager'.
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'LevelManager' of type 'UnityEngine.Transform'.
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'LevelManager' of type 'LevelManager'.
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Find unity event methods in component 'WebviewManager' of type 'UnityEngine.Transform'.
@@ -1364,9 +1366,9 @@
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/Unity.Notifications.Unified.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/SDKConfig.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/DOTweenPro.Scripts.dll
+ - /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/WebView.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/DOTween.Modules.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/VosacoSDK.dll
- - /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/WebView.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/endel.nativewebsocket.dll
- /Users/edy/Documents/ArrowBeatTap-IOS/Temp/StagingArea/Data/Managed/NCWWA6A0SDK.dll
@@ -1488,12 +1490,12 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Animation Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip StateMachineBehaviour Types...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [NCWWA6A0SDK] Skip StateMachineBehaviour Types...
@@ -1519,9 +1521,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Gui Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [NCWWA6A0SDK] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.NCWWA6A0SDKAdHelper::ShowSplash(System.Action)] Because the method might be a gui method.
@@ -1697,6 +1699,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.com_bottom] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.com_finger] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.com_flicker] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.com_gift] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.com_tips] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.HeartsPanel] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Arrow_game.LineTile] Because the type might be a type called through reflection.
@@ -1810,6 +1813,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.com_broadcast_new] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.com_broadcast_text1] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.com_money] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.com_open_tips] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.com_tips] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.item_wheel] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Common_01.wheel] Because the type might be a type called through reflection.
@@ -1819,6 +1823,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FGUI.Coins_101.com_coinFly] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.ApplePay] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.SplashAD] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.ArrowGameConfig] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.Durationtasks] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.exBrPool] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.GameUrls] Because the type might be a type called through reflection.
@@ -1832,6 +1837,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.Paidgift] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.SignDailyReward] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] IgnoreOPS.SmallrewardNum] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.WebviewManager::TouchClickPoint(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ChillConnectInfo::Unload(System.Boolean)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ChillConnect.GetTaskRewardCtrl] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ChillConnect.GetTaskRewardModel] Because the type might be a type called through reflection.
@@ -2059,6 +2065,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnClick()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiInterAd::Show()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiVideoAd::Show()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiAds.Scripts.Common.IKwaiAdController`3::Show()] Because the method might be a method called through reflection.
@@ -2084,6 +2091,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[WebView] Gree.UnityWebView.WebViewObject1] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Strings in Methods...
@@ -2093,8 +2103,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoInterAd::Destroy()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoInterAdListenerProxy::onClose()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoRewardAd::Destroy()] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Strings in Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[endel.nativewebsocket] MainThreadUtil] Because the type might be a type called through reflection.
@@ -2103,6 +2111,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [NCWWA6A0SDK] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.AppsFlyerAdapter::onAppOpenAttributionFailure(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.AppsFlyerAdapter::onAppOpenAttribution(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.lS84s8WI::OnClick()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.k6SB4Ii9::OnClick()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.eyf6Pt6x::OnClick()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.CTEFbNnX::OnClick()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.NCWWA6A0SDKAdHelper::ShowSplash(System.Action)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[NCWWA6A0SDK] System.Void NCWWA6A0SDK.NCWWA6A0SDK_Manager::ShowSplash(System.Action)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Namespace - Settings
@@ -2148,6 +2160,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppMsg] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MainThreadMsg] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ErrorLogger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FreeWebViewManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] InputHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] LevelManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MaxPayManager/<>c] Analyse Type References in Custom Attribute References...
@@ -3114,6 +3127,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_bottom] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_finger] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_flicker] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_gift] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.HeartsPanel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.LineTile] Analyse Type References in Custom Attribute References...
@@ -3263,6 +3277,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_broadcast_new] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_broadcast_text1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_money] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_open_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.item_wheel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.wheel] Analyse Type References in Custom Attribute References...
@@ -3278,6 +3293,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ApplePayModel2] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.AppOpenAdModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.SplashAD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ArrowGameConfigModel] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ArrowGameConfig] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.BoardModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.Board] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.StackedModel] Analyse Type References in Custom Attribute References...
@@ -3391,8 +3408,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c__DisplayClass8_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectFileKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass110_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass125_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass111_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass126_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass12_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass37_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass7_0] Analyse Type References in Custom Attribute References...
@@ -3408,6 +3425,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.FXManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.Fx_Type] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.HallManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SDKOpenConfig] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.NetworkManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectConstant] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.onLoaded] Analyse Type References in Custom Attribute References...
@@ -3535,13 +3553,14 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.AddViewoffUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameCtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameModel] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass107_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass120_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass90_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__115] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__110] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass108_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass121_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass91_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__116] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__111] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.JsonHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.LevelConfig] Analyse Type References in Custom Attribute References...
@@ -3647,6 +3666,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass31_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUICtrl] Analyse Type References in Custom Attribute References...
@@ -3666,7 +3686,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameCtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.PackrewardCtrl] Analyse Type References in Custom Attribute References...
@@ -3759,6 +3778,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass25_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass27_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass32_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References...
@@ -3880,7 +3900,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ParticleUnscaledTime] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.PlayerPrefsKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass18_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass9_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find Member to skip...
@@ -3891,6 +3910,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.ApplePayModel2] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.AppOpenAdModel] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.SplashAD] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.ArrowGameConfigModel] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.ArrowGameConfig] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.BoardModel] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.Board] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] IgnoreOPS.StackedModel] Because of the type skipping settings.
@@ -4220,8 +4241,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c__DisplayClass7_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c__DisplayClass8_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass110_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass125_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass111_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass126_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass12_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass37_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass7_0] Is a nested class and has no namespace.
@@ -4271,13 +4292,14 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_1] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.AddViewoffUI/<>c__DisplayClass8_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass107_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass120_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_1] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass90_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__115] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__110] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass108_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass121_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_1] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass91_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__116] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__111] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowGameUI] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.ArrowTipsUI/<>c__DisplayClass13_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.BuyPropUI/<>c] Is a nested class and has no namespace.
@@ -4309,10 +4331,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass31_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MenuUI/<>c__DisplayClass19_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c__DisplayClass10_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_1] Is a nested class and has no namespace.
@@ -4342,6 +4364,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass25_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass27_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass28_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass30_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass32_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass33_0] Is a nested class and has no namespace.
@@ -4386,7 +4409,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.Timer/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.Timer] Because of compatibility component: Unity - Compatibility : The class or base class contains some serializeable fields and the 'Obfuscate Serializeable Fields' settings is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MaxADKit/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass18_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass9_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences...
@@ -5361,6 +5383,17 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] Gree.UnityWebView.WebViewObject1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[WebView] Gree.UnityWebView.WebViewObject1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module...
@@ -5557,15 +5590,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Type References in Module...
@@ -6413,6 +6437,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppMsg] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MainThreadMsg] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ErrorLogger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FreeWebViewManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] InputHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] LevelManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MaxPayManager/<>c] Analyse Type References in Custom Attribute References...
@@ -7379,6 +7404,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_bottom] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_finger] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_flicker] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_gift] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.com_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.HeartsPanel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Arrow_game.LineTile] Analyse Type References in Custom Attribute References...
@@ -7528,6 +7554,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_broadcast_new] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_broadcast_text1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_money] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_open_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.com_tips] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.item_wheel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.Common_01.wheel] Analyse Type References in Custom Attribute References...
@@ -7543,6 +7570,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ApplePayModel2] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.AppOpenAdModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.SplashAD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ArrowGameConfigModel] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.ArrowGameConfig] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.BoardModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.Board] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] IgnoreOPS.StackedModel] Analyse Type References in Custom Attribute References...
@@ -7656,8 +7685,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c__DisplayClass8_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectFileKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass110_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass125_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass111_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass126_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass12_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass37_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass7_0] Analyse Type References in Custom Attribute References...
@@ -7673,6 +7702,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.FXManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.Fx_Type] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.HallManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SDKOpenConfig] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.NetworkManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ChillConnectConstant] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.onLoaded] Analyse Type References in Custom Attribute References...
@@ -7800,13 +7830,14 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.AddViewoffUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameCtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameModel] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass107_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass120_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass90_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__115] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__110] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass108_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass121_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass91_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__116] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__111] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ArrowGameUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.JsonHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.LevelConfig] Analyse Type References in Custom Attribute References...
@@ -7912,6 +7943,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass31_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MakeupConfirmUICtrl] Analyse Type References in Custom Attribute References...
@@ -7931,7 +7963,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameCtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameModel] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c__DisplayClass10_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUI] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.OpenGameUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.PackrewardCtrl] Analyse Type References in Custom Attribute References...
@@ -8024,6 +8055,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass25_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass27_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass32_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References...
@@ -8145,7 +8177,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.ParticleUnscaledTime] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.PlayerPrefsKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass18_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass9_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ChillConnect.MaxADKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find Member to skip...
@@ -9430,6 +9461,17 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [DG.Tweening.DOTweenTMPAnimator/CharVertices] Because of the deactivation of the 'Obfuscate struct classes' settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [DG.Tweening.DOTweenTMPAnimator/CharTransform] Because of the deactivation of the 'Obfuscate struct classes' settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [DG.Tweening.DOTweenTMPAnimator/CharTransform] Because of the deactivation of the 'Obfuscate struct classes' settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] Gree.UnityWebView.WebViewObject1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module...
@@ -9554,16 +9596,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Because of the deactivation of the 'Obfuscate struct classes' settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Type References in Module...
@@ -9986,6 +10018,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] NCWWA6A0SDKDemo] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ChillConnectRoot] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ErrorLogger] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] FreeWebViewManager] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] InputHelper] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] LevelManager] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] GMTool] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
@@ -10121,6 +10154,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[WebView] WebViewObject] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[WebView] Gree.UnityWebView.WebViewObject1] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[endel.nativewebsocket] MainThreadUtil] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component ScriptableObject - Class - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] AnimationCurveData] Obfuscation of ScriptableObjects got deactivated by settings.
@@ -10301,6 +10335,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ErrorLogger::OnEnable()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ErrorLogger::OnDisable()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ErrorLogger::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FreeWebViewManager::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FreeWebViewManager::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FreeWebViewManager::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FreeWebViewManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void InputHelper::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void InputHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void LevelManager::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
@@ -11559,6 +11597,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.com_bottom::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.com_finger::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.com_flicker::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.com_gift::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.com_tips::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.HeartsPanel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Arrow_game.LineTile::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -11708,6 +11747,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.com_broadcast_new::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.com_broadcast_text1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.com_money::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.com_open_tips::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.com_tips::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.item_wheel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void FGUI.Common_01.wheel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -11723,6 +11763,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.ApplePayModel2::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.AppOpenAdModel::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.SplashAD::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.ArrowGameConfigModel::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.ArrowGameConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.BoardModel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.Board::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void IgnoreOPS.StackedModel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -11839,8 +11881,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ChillConnectFileKit::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass110_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass125_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass111_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass126_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass12_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass37_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.GameHelper/<>c__DisplayClass7_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -11856,6 +11898,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.HallManager::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.HallManager::OnApplicationQuit()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.HallManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SDKOpenConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.NetworkManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.NetworkManager::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ChillConnectConstant::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -11997,15 +12040,17 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.AddViewoffUICtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameCtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameModel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass107_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass120_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass123_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass123_1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass90_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/d__115::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ChillConnect.ArrowGameUI/d__115::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/d__110::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ChillConnect.ArrowGameUI/d__110::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass108_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass121_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass124_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass124_1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/<>c__DisplayClass91_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/d__116::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ChillConnect.ArrowGameUI/d__116::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI/d__111::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ChillConnect.ArrowGameUI/d__111::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowGameUI::.ctor(ChillConnect.ArrowGameUICtrl)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.LevelConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ArrowConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -12119,6 +12164,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI/<>c__DisplayClass31_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUI::.ctor(ChillConnect.MakeupConfirmUICtrl)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MakeupConfirmUICtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -12139,7 +12185,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameModel::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameUI/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameUI/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameUI/<>c__DisplayClass10_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameUI::.ctor(ChillConnect.OpenGameUICtrl)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.OpenGameUICtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.PackrewardCtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -12240,6 +12285,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass25_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass27_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass28_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass30_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass32_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.SaveingPotUI/<>c__DisplayClass33_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -12385,7 +12431,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.ParticleUnscaledTime::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit/<>c__DisplayClass18_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit/<>c__DisplayClass9_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ChillConnect.MaxADKit::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -13213,7 +13258,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnLoadFailed(System.String,System.Int32,System.String)] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnShow()] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnShowFailed(System.Int32,System.String)] Some other Method in the Method group getting skipped.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnClick()] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnClosed()] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void IKwaiAdListener::OnReward()] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiAdsMgr/InitResultCallbackImpl::OnFail(System.Int32,System.String)] Some other Method in the Method group getting skipped.
@@ -13608,6 +13652,79 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[DOTweenPro.Scripts] System.Void DG.Tweening.DOTweenAnimation::DOKill()] Some other Method in the Method group getting skipped.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[DOTweenPro.Scripts] System.Void DG.Tweening.DOTweenTMPAnimator::Dispose()] Method is in group that has external definition (is in some assembly that gets not obfuscated).
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[DOTweenPro.Scripts] System.Void DG.Tweening.DOTweenTMPAnimator::Dispose()] Some other Method in the Method group getting skipped.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Method References in Modules...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Instructions...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_IsInitialized(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.IntPtr WebViewObject::_CWebViewPlugin_Init(System.String,System.Boolean,System.Boolean,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 WebViewObject::_CWebViewPlugin_Destroy(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetMargins(System.IntPtr,System.Single,System.Single,System.Single,System.Single,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetScrollbarsVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetAlertDialogEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetScrollBounceEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetInteractionEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_SetURLPattern(System.IntPtr,System.String,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_LoadURL(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_LoadHTML(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_EvaluateJS(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 WebViewObject::_CWebViewPlugin_Progress(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_CanGoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_CanGoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_Reload(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_AddCustomHeader(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.String WebViewObject::_CWebViewPlugin_GetCustomHeaderValue(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_RemoveCustomHeader(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCustomHeader(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SaveCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GetCookies(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetBasicAuthInfo(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCache(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetSuspended(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void UnitySourceGeneratedAssemblyMonoScriptTypes_v1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_IsInitialized(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.IntPtr Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_Init(System.String,System.Boolean,System.Boolean,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_Destroy(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetMargins(System.IntPtr,System.Single,System.Single,System.Single,System.Single,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetScrollbarsVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetAlertDialogEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetScrollBounceEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetInteractionEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetGoogleAppRedirectionEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetURLPattern(System.IntPtr,System.String,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_LoadURL(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_LoadHTML(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_EvaluateJS(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_Progress(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_CanGoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_CanGoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_GoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_GoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_Reload(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_AddCustomHeader(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.String Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_GetCustomHeaderValue(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_RemoveCustomHeader(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_ClearCustomHeader(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_ClearCookie(System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_ClearCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SaveCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_GetCookies(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetBasicAuthInfo(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_ClearCache(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::_CWebViewPlugin_SetSuspended(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void Gree.UnityWebView.WebViewObject1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Method References in Modules...
@@ -13730,45 +13847,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoInterAdListenerProxy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoRewardAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoRewardAdListenerProxy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Method References in Modules...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Instructions...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_IsInitialized(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.IntPtr WebViewObject::_CWebViewPlugin_Init(System.String,System.Boolean,System.Boolean,System.String,System.Boolean,System.Int32,System.Boolean,System.Boolean,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 WebViewObject::_CWebViewPlugin_Destroy(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetMargins(System.IntPtr,System.Single,System.Single,System.Single,System.Single,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetScrollbarsVisibility(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetAlertDialogEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetScrollBounceEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetInteractionEnabled(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_SetURLPattern(System.IntPtr,System.String,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_LoadURL(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_LoadHTML(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_EvaluateJS(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 WebViewObject::_CWebViewPlugin_Progress(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_CanGoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Boolean WebViewObject::_CWebViewPlugin_CanGoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GoBack(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GoForward(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_Reload(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_AddCustomHeader(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.String WebViewObject::_CWebViewPlugin_GetCustomHeaderValue(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_RemoveCustomHeader(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCustomHeader(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SaveCookies()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_GetCookies(System.IntPtr,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetBasicAuthInfo(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_ClearCache(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::_CWebViewPlugin_SetSuspended(System.IntPtr,System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void WebViewObject::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Void UnitySourceGeneratedAssemblyMonoScriptTypes_v1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Method References in Modules...
@@ -14350,6 +14428,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`1 ChillConnectRoot/<>c::<>9__3_19] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`1 ChillConnectRoot/<>c::<>9__3_20] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ChillConnectRoot/<>c::<>9__3_21] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] FreeWebViewManager FreeWebViewManager::Instance] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] InputHelper InputHelper::Instance] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] MaxPayManager/<>c MaxPayManager/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Func`2,System.String> MaxPayManager/<>c::<>9__11_0] Because of the deactivated 'Obfuscate serializable classes' setting.
@@ -15596,8 +15675,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c ChillConnect.ChillConnectFileKit/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1 ChillConnect.ChillConnectFileKit/<>c::<>9__9_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.GameHelper/<>c ChillConnect.GameHelper/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1> ChillConnect.GameHelper/<>c::<>9__108_0] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1> ChillConnect.GameHelper/<>c::<>9__118_0] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1> ChillConnect.GameHelper/<>c::<>9__109_0] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`1> ChillConnect.GameHelper/<>c::<>9__119_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Collections.Generic.List`1 ChillConnect.FXManager::gameObjects] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 ChillConnect.Fx_Type::value__] Because of compatibility component: .Net Framework - Compatibility : Is the enums value__.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 ChillConnect.Fx_Type::value__] Because of the deactivated 'Obfuscate enum values' setting.
@@ -15633,8 +15712,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.Fx_Type ChillConnect.Fx_Type::fx_addeffect_1] Because of the deactivated 'Obfuscate enum values' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.Fx_Type ChillConnect.Fx_Type::fx_free_idle] Because of the deactivated 'Obfuscate enum values' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.Fx_Type ChillConnect.Fx_Type::fx_ui_jinbi_click] Because of the deactivated 'Obfuscate enum values' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 ChillConnect.HallManager::enterHallTimes] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 ChillConnect.HallManager::openTipsTimes] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Boolean ChillConnect.HallManager::isShowRankView] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Boolean ChillConnect.SDKOpenConfig::normal] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute Attribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.SDKOpenConfig::url] Because of compatibility component: JSON - Compatibility : Has a JsonPropertyAttribute Attribute.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.NetworkManager::DomainRelease] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.NetworkManager::DomainDebugUrl] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.NetworkManager::DomainReleaseUrl] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
@@ -15698,6 +15779,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.AddviewnewUI/<>c::<>9__18_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.AddviewnewUI/<>c::<>9__18_2] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.AddviewnewUI/<>c::<>9__18_3] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c ChillConnect.ArrowGameUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.ArrowGameUI/<>c::<>9__63_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Single ChillConnect.ArrowGameUI::_moveSpeed] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation this field.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Int32 ChillConnect.LevelConfig::levelId] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.LevelConfig::levelName] Because of the deactivated 'Obfuscate serializable classes' setting.
@@ -15740,7 +15823,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DG.Tweening.TweenCallback ChillConnect.FirstRewardUI/<>c::<>9__18_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ChillConnect.FirstRewardUI/<>c::<>9__18_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.GameResultUI/<>c ChillConnect.GameResultUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ChillConnect.GameResultUI/<>c::<>9__15_6] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.GameResultUI/<>c::<>9__15_7] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.GameResultUI/<>c::<>9__15_8] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.GameResultUI/<>c::<>9__15_9] Because of the deactivated 'Obfuscate serializable classes' setting.
@@ -15765,15 +15847,15 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.GoldRewardUI/<>c ChillConnect.GoldRewardUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.GoldRewardUI/<>c::<>9__15_2] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.H5UI/<>c ChillConnect.H5UI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.H5UI/<>c::<>9__8_0] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.H5UI/<>c::<>9__9_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c ChillConnect.MakeupConfirmUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`2 ChillConnect.MakeupConfirmUI/<>c::<>9__24_2] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.MakeupConfirmUI/<>c::<>9__26_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Comparison`1 ChillConnect.MakeupConfirmUI/<>c::<>9__29_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Comparison`1 ChillConnect.MakeupConfirmUI/<>c::<>9__29_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c ChillConnect.OpenGameUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] Spine.AnimationState/TrackEntryDelegate ChillConnect.OpenGameUI/<>c::<>9__16_3] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DG.Tweening.TweenCallback ChillConnect.OpenGameUI/<>c::<>9__16_2] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DG.Tweening.TweenCallback ChillConnect.OpenGameUI/<>c::<>9__16_1] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] FairyGUI.PlayCompleteCallback ChillConnect.OpenGameUI/<>c::<>9__16_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c ChillConnect.PackrewardUI/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.PackrewardUI/<>c::<>9__21_4] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.PackrewardUI/<>c::<>9__21_6] Because of the deactivated 'Obfuscate serializable classes' setting.
@@ -15862,7 +15944,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.ConfigSystem/<>c ChillConnect.ConfigSystem/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`2 ChillConnect.ConfigSystem/<>c::<>9__7_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.LoginSystem/<>c ChillConnect.LoginSystem/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`2 ChillConnect.LoginSystem/<>c::<>9__8_0] Because of the deactivated 'Obfuscate serializable classes' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.LoginSystem/<>c::<>9__8_2] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.PlayDataSystem/<>c ChillConnect.PlayDataSystem/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.Events.UnityAction`2 ChillConnect.PlayDataSystem/<>c::<>9__4_0] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] UnityEngine.GameObject ChillConnect.EngineEventSystem::eventObj] Because of compatibility component: Unity - Compatibility : The class is a Unity class (MonoBehaviour/...) and the setting 'Obfuscate Public unity fields' is deactivated.
@@ -15882,9 +15964,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.String ChillConnect.Timer::timerName] Because of compatibility component: Unity - Compatibility : The field has a 'SerializeField' attribute and therefore is serializeable. The disabled setting 'Obfuscate SerializeAble Fields' deactivates obfuscation this field.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] ChillConnect.MaxADKit/<>c ChillConnect.MaxADKit/<>c::<>9] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ChillConnect.MaxADKit/<>c::<>9__6_0] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action`1 ChillConnect.MaxADKit/<>c::<>9__18_0] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] DG.Tweening.TweenCallback ChillConnect.MaxADKit/<>c::<>9__18_3] Because of the deactivated 'Obfuscate serializable classes' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[Assembly-CSharp] System.Action ChillConnect.MaxADKit/<>c::<>9__18_1] Because of the deactivated 'Obfuscate serializable classes' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find Field References in Modules...
@@ -17212,6 +17291,17 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTweenPro.Scripts] System.Int32 DG.Tweening.DOTweenTMPAnimator/CharTransform::_matIndex] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTweenPro.Scripts] System.Int32 DG.Tweening.DOTweenTMPAnimator/CharTransform::_firstVertexIndex] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[DOTweenPro.Scripts] TMPro.TMP_MeshInfo DG.Tweening.DOTweenTMPAnimator/CharTransform::_meshInfo] Because of the deactivated 'Obfuscate struct fields' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Modules...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Instructions...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Fields...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of the deactivated 'Obfuscate struct fields' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of the deactivated 'Obfuscate struct fields' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of the deactivated 'Obfuscate struct fields' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of the deactivated 'Obfuscate struct fields' setting.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Field References in Modules...
@@ -17260,17 +17350,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[VosacoSDK] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of the deactivated 'Obfuscate struct fields' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Modules...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Field References in Instructions...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Fields...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::FilePathsData] Because of the deactivated 'Obfuscate struct fields' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Byte[] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TypesData] Because of the deactivated 'Obfuscate struct fields' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalTypes] Because of the deactivated 'Obfuscate struct fields' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Int32 UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::TotalFiles] Because of the deactivated 'Obfuscate struct fields' setting.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[WebView] System.Boolean UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData::IsEditorOnly] Because of the deactivated 'Obfuscate struct fields' setting.
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Field References in Modules...
@@ -17911,6 +17990,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Properties...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Properties...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip...
@@ -17931,10 +18014,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Properties...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Properties...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Member to skip...
@@ -18067,6 +18146,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Events...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Events...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip...
@@ -18075,10 +18158,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Events...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Events...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [endel.nativewebsocket] Find Member to skip...
@@ -18117,9 +18196,9 @@
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Methods...
+[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Methods...
-[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [NCWWA6A0SDK] Skip Methods...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Parameter - Obfuscation
@@ -18137,9 +18216,9 @@
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Properties...
+[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Properties...
-[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [NCWWA6A0SDK] Skip Properties...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Event - Obfuscation
@@ -18155,9 +18234,9 @@
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [SDKConfig] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Events...
+[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [DOTween.Modules] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [VosacoSDK] Skip Events...
-[Info][OPS.OBF][OnPostAnalyse_Assemblies] [WebView] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [endel.nativewebsocket] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] [NCWWA6A0SDK] Skip Events...
[Info][OPS.OBF][OnPostAnalyse_Assemblies] Process component Attribute - Settings
@@ -18733,6 +18812,7 @@
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.GameHelper] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.ILoadAsset] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.LoadKit] :
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.SDKOpenConfig] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.ChillConnectConstant] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.ChillConnectInfo] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[Assembly-CSharp] ChillConnect.ChillConnectKit] :
@@ -19017,6 +19097,7 @@
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] :
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] :
@@ -19027,7 +19108,6 @@
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] :
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] WaitForUpdate] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] :
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Namespace [[endel.nativewebsocket] NativeWebSocket.IWebSocket] :
@@ -19790,8 +19870,8 @@
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectFileKit/<>c__DisplayClass8_0] : bds
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectFileKit] : bdt
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c] : bdu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass110_0] : bdv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass125_0] : bdw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass111_0] : bdv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass126_0] : bdw
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass12_0] : bdx
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass37_0] : bdy
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameHelper/<>c__DisplayClass7_0] : bdz
@@ -19804,22598 +19884,22624 @@
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoadKit] : beg
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXManager/<>c__DisplayClass12_0`1] : beh`1
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXManager/<>c__DisplayClass13_0] : bei
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectConstant] : bej
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo/<>c__DisplayClass23_0] : bek
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo/<>c__DisplayClass28_0] : bel
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo] : bem
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass11_0`1] : ben`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass14_0] : beo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass14_1] : bep
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass15_0] : beq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass16_0] : ber
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass17_0] : bes
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass33_0] : bet
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass36_0`1] : beu`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__15] : bev
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__8] : bew
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__11`1] : bex`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__9] : bey
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__17] : bez
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit] : bfa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CountDownKit] : bfb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.App/<>c] : bfc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.App] : bfd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AsyncDealData] : bfe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CrazyAsyKit] : bff
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseScene] : bfg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseSystem] : bfh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AnimConst] : bfi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppConst] : bfj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppObjConst] : bfk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioConst] : bfl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CameraConst] : bfm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LayerMaskConst] : bfn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PrefsConst] : bfo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PrefsKeyConst] : bfp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ScreenConst] : bfq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UILayerConst] : bfr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.VectorConst] : bfs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.YieldConst] : bft
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChangeValue`1] : bfu`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseDispatcher`3] : bfv`3
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseMainThreadDispatcher`3/MainThreadMsgClass] : bfw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppDispatcher] : bfx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CtrlDispatcher] : bfy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DataDispatcher] : bfz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDispatcher] : bga
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModelDispatcher] : bgb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NetworkDispatcher] : bgc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PreferencesDispatcher`1] : bgd`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UICtrlDispatcher] : bge
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.StringExtend] : bgf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameObjectExtend] : bgg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GetTaskRewardUI/<>c] : bgh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene/<>c] : bgi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene/<>c__DisplayClass6_0] : bgj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene] : bgk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseInterfaceManager`1] : bgl`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.InterfaceManager] : bgm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CameraManager] : bgn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DateTimeManager] : bgo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameIManager] : bgp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModuleManager] : bgq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneManager] : bgr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ManagerOfManager] : bgs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioManager/<>c] : bgt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioManager/<>c__DisplayClass26_0] : bgu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneSwitchManager/d__4] : bgv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneSwitchManager/d__5] : bgw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UISequenceInfo] : bgx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIParentInfo] : bgy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIMgrConst] : bgz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c] : bha
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass20_0] : bhb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass21_0] : bhc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass26_0] : bhd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass30_0] : bhe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass32_0] : bhf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass42_0] : bhg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass43_0] : bhh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass61_0] : bhi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CtrlConst] : bhj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModelConst] : bhk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModuleManagerRegister] : bhl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIConst] : bhm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UICtrlConst] : bhn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddViewUI/<>c__DisplayClass11_0] : bho
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c] : bhp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_0] : bhq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_1] : bhr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddViewoffUI/<>c__DisplayClass8_0] : bhs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass107_0] : bht
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass120_0] : bhu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_0] : bhv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass123_1] : bhw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass90_0] : bhx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__115] : bhy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__110] : bhz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JsonHelper] : bia
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelConfig] : bib
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowConfig] : bic
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AllLevelRoot] : bid
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuccessData] : bie
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowTipsUI/<>c__DisplayClass13_0] : bif
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuyPropUI/<>c] : big
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChoosePropUI/<>c] : bih
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChoosePropUI/<>c__DisplayClass16_0] : bii
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FirstRewardUI/<>c] : bij
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FirstRewardUI/<>c__DisplayClass17_0] : bik
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_0] : bil
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_1] : bim
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_2] : bin
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass7_0] : bio
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FxPlayData] : bip
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameAgainUI/<>c__DisplayClass10_0] : biq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameResultUI/<>c] : bir
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameResultUI/<>c__DisplayClass26_0] : bis
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GoldRewardUI/<>c] : bit
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GoldRewardUI/<>c__DisplayClass15_0] : biu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.H5UI/<>c] : biv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JoastData] : biw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JoastUI/<>c__DisplayClass8_0] : bix
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelRewardUI/<>c__DisplayClass12_0] : biy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelRewardUI/<>c__DisplayClass13_0] : biz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoadingUI/d__12] : bja
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c] : bjb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass18_0] : bjc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_0] : bjd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_1] : bje
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_2] : bjf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass23_0] : bjg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass25_0] : bjh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0] : bji
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0] : bjj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0] : bjk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0] : bjl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MenuUI/<>c__DisplayClass19_0] : bjm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c] : bjn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c__DisplayClass10_0] : bjo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c] : bjp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_0] : bjq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_1] : bjr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass21_0] : bjs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass21_1] : bjt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackRewardData] : bju
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassunlockUI/<>c__DisplayClass9_0] : bjv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c] : bjw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c__DisplayClass28_0] : bjx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c__DisplayClass31_0] : bjy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PersonViewUI/<>c] : bjz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PersonViewUI/<>c__DisplayClass19_0] : bka
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PettyAwardUI/<>c__DisplayClass18_0] : bkb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PettyAwardUI/<>c__DisplayClass22_0] : bkc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RecordViewUI/d__20] : bkd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectMoveFunc/<>c__DisplayClass0_0] : bke
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectMoveFunc] : bkf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c] : bkg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c__DisplayClass18_0] : bkh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c__DisplayClass18_1] : bki
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c] : bkj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass13_0] : bkk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass34_0] : bkl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass34_1] : bkm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniData] : bkn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniUI/<>c__DisplayClass20_0] : bko
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniUI/<>c__DisplayClass20_1] : bkp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardboxUI/<>c] : bkq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardMulNewUI/<>c] : bkr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c] : bks
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass25_0] : bkt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass27_0] : bku
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass30_0] : bkv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass32_0] : bkw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass33_0] : bkx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass36_0] : bky
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass36_1] : bkz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c] : bla
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c__DisplayClass18_0] : blb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c__DisplayClass29_0] : blc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass18_0] : bld
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass18_1] : ble
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass21_0] : blf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c] : blg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_0] : blh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_1] : bli
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_2] : blj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass9_0] : blk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TipsViewUI/<>c__DisplayClass12_0] : bll
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.WheelViewUI/<>c__DisplayClass31_0] : blm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.WheelViewUI/<>c__DisplayClass32_0] : bln
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseCtrl] : blo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseUICtrl] : blp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseModel] : blq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseUI] : blr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SubUI] : bls
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIInfoConst] : blt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIInfo] : blu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c] : blv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass31_0] : blw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass32_0] : blx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass33_0] : bly
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass34_0] : blz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass35_0] : bma
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ScrollItemData] : bmb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectPool] : bmc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectsPool] : bmd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ListPool`1] : bme`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppManagerRegister] : bmf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ManagerRegister] : bmg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneManagerRegister] : bmh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManagerRegister] : bmi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveData] : bmj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Saveobject] : bmk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveLocalData] : bml
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveLoacalobject] : bmm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ISingleton] : bmn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Singleton`1] : bmo`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuperApplication/<>c] : bmp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuperApplication/d__18] : bmq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConsumeSystem] : bmr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConsumeVal] : bms
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass10_0] : bmt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass10_1] : bmu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass9_0] : bmv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass9_1] : bmw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem] : bmx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem/<>c] : bmy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem/<>c__DisplayClass7_0] : bmz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem] : bna
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoginSystem/<>c] : bnb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoginSystem] : bnc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayDataSystem/<>c] : bnd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayDataSystem] : bne
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.EventKit] : bnf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GeneralKit] : bng
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskSequence/<>c__DisplayClass7_0] : bnh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskSequence] : bni
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskProcedure] : bnj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NormalTimer/TimerTask] : bnk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NormalTimer/<>c] : bnl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TimerTask] : bnm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Timer/<>c] : bnn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UnitConvertUtil] : bno
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DOTweenHelper] : bnp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FGUIHelper] : bnq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayerPrefsKit] : bnr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit/<>c] : bns
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass18_0] : bnt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass9_0] : bnu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit] : bnv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bnw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer] : bnx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.JsonDecoder] : bny
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Timeline] : bnz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IBoneTimeline] : boa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ISlotTimeline] : bob
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.CurveTimeline] : boc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateTimeline] : bod
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TranslateTimeline] : boe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ScaleTimeline] : bof
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ShearTimeline] : bog
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ColorTimeline] : boh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TwoColorTimeline] : boi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentTimeline] : boj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DeformTimeline] : bok
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventTimeline] : bol
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DrawOrderTimeline] : bom
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintTimeline] : bon
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintTimeline] : boo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintPositionTimeline] : bop
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintSpacingTimeline] : boq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintMixTimeline] : bor
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState] : bos
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TrackEntry] : bot
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue] : bou
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1/IPoolable] : bov
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1] : bow`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPairComparer] : box
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData] : boy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Atlas] : boz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasPage] : bpa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasRegion] : bpb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureLoader] : bpc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasAttachmentLoader] : bpd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Attachment] : bpe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IHasRendererObject] : bpf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentLoader] : bpg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoundingBoxAttachment] : bph
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ClippingAttachment] : bpi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MeshAttachment] : bpj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathAttachment] : bpk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PointAttachment] : bpl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RegionAttachment] : bpm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.VertexAttachment] : bpn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Bone] : bpo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneData] : bpp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ConstraintData] : bpq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Event] : bpr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventData] : bps
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1] : bpt`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraint] : bpu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintData] : bpv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IUpdatable] : bpw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Json] : bpx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MathUtils] : bpy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IInterpolation] : bpz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pow] : bqa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PowOut] : bqb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraint] : bqc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintData] : bqd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skeleton] : bqe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/Vertices] : bqf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/SkeletonInput] : bqg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary] : bqh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBounds] : bqi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Polygon] : bqj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonClipping] : bqk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonData] : bql
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson/LinkedMesh] : bqm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson] : bqn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntryComparer] : bqo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin] : bqp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Slot] : bqq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SlotData] : bqr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraint] : bqs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintData] : bqt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Triangulator] : bqu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpineSkeletonExtensions] : bqv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterials/ReplacementMaterial] : bqw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.RegionlessAttachmentLoader] : bqx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/VersionInfo] : bqy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/CompatibilityProblemInfo] : bqz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility] : bra
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MaterialsTextureLoader] : brb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSpriteAtlasAsset/SavedRegionInfo] : brc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/ClipInfos] : brd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/AnimationClipEqualityComparer] : bre
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/IntEqualityComparer] : brf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator] : brg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SpriteMaskInteractionMaterials] : brh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/<>c__DisplayClass75_0] : bri
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonAnimation] : brj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonDataAsset] : brk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonComponent] : brl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IAnimationStateComponent] : brm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonRenderer] : brn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonComponent] : bro
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.DoubleBuffered`1] : brp`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator] : brq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers/SmartMesh] : brr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers] : brs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererInstruction] : brt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineMesh] : bru
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterialsAsset/AtlasMaterialCache] : brv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttributeBase] : brw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineBone] : brx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSlot] : bry
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAnimation] : brz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineEvent] : bsa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineIkConstraint] : bsb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineTransformConstraint] : bsc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpinePathConstraint] : bsd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSkin] : bse
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment] : bsf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAtlasRegion] : bsg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonExtensions] : bsh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation] : bsi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationComplete] : bsj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationEnd] : bsk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineEvent] : bsl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineTrackEntryEnd] : bsm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AnimationTools.TimelineExtensions] : bsn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentCloneExtensions] : bso
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentRegionExtensions] : bsp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.SkinUtilities] : bsq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialWithRefcount] : bsr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] : bss
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] : bst
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] : bsu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2] : bsv`2
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionaryDebugView`2] : bsw`2
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.CollectionExtensions] : bsx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpService] : bsy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError] : bsz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents/AppLovin] : bta
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents] : btb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdk] : btc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] : btd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] : bte
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdInfo] : btf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo/<>c] : btg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo] : bth
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo/<>c] : bti
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo] : btj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] : btk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] : btl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] : btm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase] : btn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AdPositionExtenstion] : bto
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] : btp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] : btq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] : btr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] : bts
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] : btt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] : btu`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] : btv`2
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] : btw`3
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks] : btx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS] : bty
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkLogger] : btz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass34_0] : bua
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils] : bub
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] : buc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bud
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/Task] : bue
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/DestryAdTask] : buf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper] : bug
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bui
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] : buj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] : buk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] IKwaiAdListener] : bul
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] : bum
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr] : bun
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiLog] : buo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdListener] : bup
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] : buq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd] : bur
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdListener] : bus
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] : but
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd] : buu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleAttribute] : bux
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleCustomTypeParserAttribute] : buz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodAttribute] : bva
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.CircularBuffer`1] : bvb`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DynamicCircularBuffer`1] : bvc`1
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodInfo] : bvd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/<>c] : bve
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntry] : bvf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryContentEqualityComparer] : bvg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogPopup/d__25] : bvh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] : bvi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] : bvj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] : bvk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFInAppEvents] : bvl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] InAppPurchaseValidationResult] : bvm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ProductPurchase] : bvn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ValidationFailureData] : bvo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionValidationResult] : bvp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchase] : bvq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CanceledStateContext] : bvr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ExternalAccountIdentifiers] : bvs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchaseLineItem] : bvt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PausedStateContext] : bvu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscribeWithGoogleInfo] : bvv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] TestPurchase] : bvw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeveloperInitiatedCancellation] : bvx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ReplacementCancellation] : bvy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SystemInitiatedCancellation] : bvz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UserInitiatedCancellation] : bwa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AutoRenewingPlan] : bwb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeferredItemReplacement] : bwc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] OfferDetails] : bwd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PrepaidPlan] : bwe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CancelSurveyResult] : bwf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionItemPriceChangeDetails] : bwg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Money] : bwh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser] : bwj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Serializer] : bwk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json] : bwl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationRequest] : bwn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotification] : bwo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAction] : bwp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSTextInputNotificationAction] : bwq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategory] : bwr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/<>c] : bws
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter] : bwt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTrigger] : bwu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter] : bww
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationSchedule] : bwx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionRequest] : bwy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bxa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimationExtensions] : bxb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass1_0] : bxc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass2_0] : bxd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts] : bxe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass0_0] : bxf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass10_0] : bxg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass1_0] : bxh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass2_0] : bxi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass4_0] : bxj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass5_0] : bxk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass6_0] : bxl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass7_0] : bxm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass8_0] : bxn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass9_0] : bxo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText] : bxp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass32_0] : bxq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass33_0] : bxr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass34_0] : bxs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass35_0] : bxt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass37_0] : bxu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass38_0] : bxv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass39_0] : bxw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass41_0] : bxx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] : bxy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] : bxz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] : bya
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] : byb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : byc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass0_0] : byd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass1_0] : bye
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass2_0] : byf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] : byg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass0_0] : byh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass10_0] : byi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass1_0] : byj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass2_0] : byk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass3_0] : byl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass4_0] : bym
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass5_0] : byn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass6_0] : byo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass7_0] : byp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass8_0] : byq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass9_0] : byr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] : bys
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass0_0] : byt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass1_0] : byu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass2_0] : byv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass3_0] : byw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass4_0] : byx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass5_0] : byy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass6_0] : byz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D] : bza
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass0_0] : bzb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass1_0] : bzc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass3_0] : bzd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite] : bze
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/Utils] : bzf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass0_0] : bzg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass10_0] : bzh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass11_0] : bzi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass12_0] : bzj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass13_0] : bzk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass14_0] : bzl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass15_0] : bzm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass16_0] : bzn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass17_0] : bzo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass18_0] : bzp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass19_0] : bzq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass1_0] : bzr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass20_0] : bzs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass21_0] : bzt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass22_0] : bzu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass23_0] : bzv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass24_0] : bzw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass25_0] : bzx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass26_0] : bzy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass27_0] : bzz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass28_0] : caa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass29_0] : cab
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass2_0] : cac
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass30_0] : cad
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass31_0] : cae
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass32_0] : caf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass33_0] : cag
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass34_0] : cah
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass35_0] : cai
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass36_0] : caj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass37_0] : cak
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass38_0] : cal
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass39_0] : cam
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass3_0] : cao
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass40_0] : cap
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass4_0] : caq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass5_0] : car
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass7_0] : cas
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass8_0] : cat
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass9_0] : cau
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI] : cav
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass8_0] : caw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass9_0] : cax
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion] : cay
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForCompletion] : caz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForRewind] : cba
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForKill] : cbb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForElapsedLoops] : cbc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] : cbd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] : cbe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] : cbf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] : cbg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] : cbh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cbi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cbj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] MainThreadUtil/<>c__DisplayClass9_0] : cbk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/MainThreadAwaiter] : cbl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/d__4] : cbm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate] : cbn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cbo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.IWebSocket] : cbp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketHelpers] : cbq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketException] : cbr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketUnexpectedException] : cbs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidArgumentException] : cbt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidStateException] : cbu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread/<>c] : cbv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread] : cbw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket] : cbx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] : cby
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] jz79f_Cl] : cbz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] Loom/yARGiXY6] : cca
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] Loom] : ccb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] ekir75Dy] : ccc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] bIm5AGvY] : ccd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] 0nmBbgpv] : cce
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.Timer/TimerManager/<>c] : ccf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.Timer] : ccg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.TimerExtensions] : cch
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SDKOpenConfig] : bej
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectConstant] : bek
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo/<>c__DisplayClass23_0] : bel
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo/<>c__DisplayClass28_0] : bem
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectInfo] : ben
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass11_0`1] : beo`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass14_0] : bep
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass14_1] : beq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass15_0] : ber
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass16_0] : bes
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass17_0] : bet
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass33_0] : beu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/<>c__DisplayClass36_0`1] : bev`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__15] : bew
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__8] : bex
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__11`1] : bey`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__9] : bez
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit/d__17] : bfa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChillConnectKit] : bfb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CountDownKit] : bfc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.App/<>c] : bfd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.App] : bfe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AsyncDealData] : bff
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CrazyAsyKit] : bfg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseScene] : bfh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseSystem] : bfi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AnimConst] : bfj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppConst] : bfk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppObjConst] : bfl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioConst] : bfm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CameraConst] : bfn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LayerMaskConst] : bfo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PrefsConst] : bfp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PrefsKeyConst] : bfq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ScreenConst] : bfr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UILayerConst] : bfs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.VectorConst] : bft
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.YieldConst] : bfu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChangeValue`1] : bfv`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseDispatcher`3] : bfw`3
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseMainThreadDispatcher`3/MainThreadMsgClass] : bfx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppDispatcher] : bfy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CtrlDispatcher] : bfz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DataDispatcher] : bga
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDispatcher] : bgb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModelDispatcher] : bgc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NetworkDispatcher] : bgd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PreferencesDispatcher`1] : bge`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UICtrlDispatcher] : bgf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.StringExtend] : bgg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameObjectExtend] : bgh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GetTaskRewardUI/<>c] : bgi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene/<>c] : bgj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene/<>c__DisplayClass6_0] : bgk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MainScene] : bgl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseInterfaceManager`1] : bgm`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.InterfaceManager] : bgn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CameraManager] : bgo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DateTimeManager] : bgp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameIManager] : bgq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModuleManager] : bgr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneManager] : bgs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ManagerOfManager] : bgt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioManager/<>c] : bgu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AudioManager/<>c__DisplayClass26_0] : bgv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneSwitchManager/d__4] : bgw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneSwitchManager/d__5] : bgx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UISequenceInfo] : bgy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIParentInfo] : bgz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIMgrConst] : bha
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c] : bhb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass20_0] : bhc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass21_0] : bhd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass26_0] : bhe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass30_0] : bhf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass32_0] : bhg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass42_0] : bhh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass43_0] : bhi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManager/<>c__DisplayClass61_0] : bhj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.CtrlConst] : bhk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModelConst] : bhl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ModuleManagerRegister] : bhm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIConst] : bhn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UICtrlConst] : bho
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddViewUI/<>c__DisplayClass11_0] : bhp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c] : bhq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_0] : bhr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddviewnewUI/<>c__DisplayClass10_1] : bhs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AddViewoffUI/<>c__DisplayClass8_0] : bht
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c] : bhu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass108_0] : bhv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass121_0] : bhw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_0] : bhx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass124_1] : bhy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/<>c__DisplayClass91_0] : bhz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__116] : bia
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowGameUI/d__111] : bib
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JsonHelper] : bic
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelConfig] : bid
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowConfig] : bie
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AllLevelRoot] : bif
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuccessData] : big
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ArrowTipsUI/<>c__DisplayClass13_0] : bih
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuyPropUI/<>c] : bii
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChoosePropUI/<>c] : bij
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ChoosePropUI/<>c__DisplayClass16_0] : bik
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FirstRewardUI/<>c] : bil
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FirstRewardUI/<>c__DisplayClass17_0] : bim
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_0] : bin
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_1] : bio
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass6_2] : bip
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FXWndUI/<>c__DisplayClass7_0] : biq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FxPlayData] : bir
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameAgainUI/<>c__DisplayClass10_0] : bis
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameResultUI/<>c] : bit
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameResultUI/<>c__DisplayClass26_0] : biu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GoldRewardUI/<>c] : biv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GoldRewardUI/<>c__DisplayClass15_0] : biw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.H5UI/<>c] : bix
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JoastData] : biy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.JoastUI/<>c__DisplayClass8_0] : biz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelRewardUI/<>c__DisplayClass12_0] : bja
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LevelRewardUI/<>c__DisplayClass13_0] : bjb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoadingUI/d__12] : bjc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c] : bjd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass18_0] : bje
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_0] : bjf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_1] : bjg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass21_2] : bjh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass23_0] : bji
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass25_0] : bjj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass26_0] : bjk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass28_0] : bjl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass30_0] : bjm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass31_0] : bjn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MakeupConfirmUI/<>c__DisplayClass32_0] : bjo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MenuUI/<>c__DisplayClass19_0] : bjp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.OpenGameUI/<>c] : bjq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c] : bjr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_0] : bjs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass16_1] : bjt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass21_0] : bju
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackrewardUI/<>c__DisplayClass21_1] : bjv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PackRewardData] : bjw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassunlockUI/<>c__DisplayClass9_0] : bjx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c] : bjy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c__DisplayClass28_0] : bjz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PassViewUI/<>c__DisplayClass31_0] : bka
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PersonViewUI/<>c] : bkb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PersonViewUI/<>c__DisplayClass19_0] : bkc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PettyAwardUI/<>c__DisplayClass18_0] : bkd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PettyAwardUI/<>c__DisplayClass22_0] : bke
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RecordViewUI/d__20] : bkf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectMoveFunc/<>c__DisplayClass0_0] : bkg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectMoveFunc] : bkh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c] : bki
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c__DisplayClass18_0] : bkj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ResurgenceUI/<>c__DisplayClass18_1] : bkk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c] : bkl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass13_0] : bkm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass34_0] : bkn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardUI/<>c__DisplayClass34_1] : bko
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniData] : bkp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniUI/<>c__DisplayClass20_0] : bkq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardAniUI/<>c__DisplayClass20_1] : bkr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardboxUI/<>c] : bks
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.RewardMulNewUI/<>c] : bkt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c] : bku
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass25_0] : bkv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass27_0] : bkw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass28_0] : bkx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass30_0] : bky
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass32_0] : bkz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass33_0] : bla
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass36_0] : blb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveingPotUI/<>c__DisplayClass36_1] : blc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c] : bld
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c__DisplayClass18_0] : ble
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BuygoldUI/<>c__DisplayClass29_0] : blf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass18_0] : blg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass18_1] : blh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SignInViewUI/<>c__DisplayClass21_0] : bli
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c] : blj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_0] : blk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_1] : bll
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass18_2] : blm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ThreeDaysGiftUI/<>c__DisplayClass9_0] : bln
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TipsViewUI/<>c__DisplayClass12_0] : blo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.WheelViewUI/<>c__DisplayClass31_0] : blp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.WheelViewUI/<>c__DisplayClass32_0] : blq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseCtrl] : blr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseUICtrl] : bls
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseModel] : blt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.BaseUI] : blu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SubUI] : blv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIInfoConst] : blw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIInfo] : blx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c] : bly
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass31_0] : blz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass32_0] : bma
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass33_0] : bmb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass34_0] : bmc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NewTaskUI/<>c__DisplayClass35_0] : bmd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ScrollItemData] : bme
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectPool] : bmf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GObjectsPool] : bmg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ListPool`1] : bmh`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.AppManagerRegister] : bmi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ManagerRegister] : bmj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SceneManagerRegister] : bmk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UIManagerRegister] : bml
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveData] : bmm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Saveobject] : bmn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveLocalData] : bmo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SaveLoacalobject] : bmp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ISingleton] : bmq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Singleton`1] : bmr`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuperApplication/<>c] : bms
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.SuperApplication/d__18] : bmt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConsumeSystem] : bmu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConsumeVal] : bmv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass10_0] : bmw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass10_1] : bmx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass9_0] : bmy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem/<>c__DisplayClass9_1] : bmz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GameDataSystem] : bna
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem/<>c] : bnb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem/<>c__DisplayClass7_0] : bnc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.ConfigSystem] : bnd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoginSystem/<>c] : bne
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.LoginSystem] : bnf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayDataSystem/<>c] : bng
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayDataSystem] : bnh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.EventKit] : bni
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.GeneralKit] : bnj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskSequence/<>c__DisplayClass7_0] : bnk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskSequence] : bnl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TaskProcedure] : bnm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NormalTimer/TimerTask] : bnn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.NormalTimer/<>c] : bno
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.TimerTask] : bnp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.Timer/<>c] : bnq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.UnitConvertUtil] : bnr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.DOTweenHelper] : bns
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.FGUIHelper] : bnt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.PlayerPrefsKit] : bnu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit/<>c] : bnv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit/<>c__DisplayClass9_0] : bnw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Assembly-CSharp] ChillConnect.MaxADKit] : bnx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bny
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.Lexer] : bnz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] SharpJson.JsonDecoder] : boa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Timeline] : bob
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IBoneTimeline] : boc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ISlotTimeline] : bod
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.CurveTimeline] : boe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RotateTimeline] : bof
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TranslateTimeline] : bog
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ScaleTimeline] : boh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ShearTimeline] : boi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ColorTimeline] : boj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TwoColorTimeline] : bok
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentTimeline] : bol
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DeformTimeline] : bom
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventTimeline] : bon
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.DrawOrderTimeline] : boo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintTimeline] : bop
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintTimeline] : boq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintPositionTimeline] : bor
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintSpacingTimeline] : bos
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintMixTimeline] : bot
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationState] : bou
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TrackEntry] : bov
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventQueue] : bow
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1/IPoolable] : box
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pool`1] : boy`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData/AnimationPairComparer] : boz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AnimationStateData] : bpa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Atlas] : bpb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasPage] : bpc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasRegion] : bpd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TextureLoader] : bpe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AtlasAttachmentLoader] : bpf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Attachment] : bpg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IHasRendererObject] : bph
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.AttachmentLoader] : bpi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoundingBoxAttachment] : bpj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ClippingAttachment] : bpk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MeshAttachment] : bpl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathAttachment] : bpm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PointAttachment] : bpn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.RegionAttachment] : bpo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.VertexAttachment] : bpp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Bone] : bpq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.BoneData] : bpr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ConstraintData] : bps
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Event] : bpt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.EventData] : bpu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.ExposedList`1] : bpv`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraint] : bpw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IkConstraintData] : bpx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IUpdatable] : bpy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Json] : bpz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.MathUtils] : bqa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.IInterpolation] : bqb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Pow] : bqc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PowOut] : bqd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraint] : bqe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.PathConstraintData] : bqf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skeleton] : bqg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/Vertices] : bqh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary/SkeletonInput] : bqi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBinary] : bqj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonBounds] : bqk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Polygon] : bql
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonClipping] : bqm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonData] : bqn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson/LinkedMesh] : bqo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SkeletonJson] : bqp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin/SkinEntryComparer] : bqq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Skin] : bqr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Slot] : bqs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SlotData] : bqt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraint] : bqu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.TransformConstraintData] : bqv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Triangulator] : bqw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.SpineSkeletonExtensions] : bqx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterials/ReplacementMaterial] : bqy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.RegionlessAttachmentLoader] : bqz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/VersionInfo] : bra
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility/CompatibilityProblemInfo] : brb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonDataCompatibility] : brc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MaterialsTextureLoader] : brd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSpriteAtlasAsset/SavedRegionInfo] : bre
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/ClipInfos] : brf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/AnimationClipEqualityComparer] : brg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator/IntEqualityComparer] : brh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonMecanim/MecanimTranslator] : bri
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/SpriteMaskInteractionMaterials] : brj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRenderer/<>c__DisplayClass75_0] : brk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonAnimation] : brl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonDataAsset] : brm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.ISkeletonComponent] : brn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IAnimationStateComponent] : bro
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonRenderer] : brp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.IHasSkeletonComponent] : brq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.DoubleBuffered`1] : brr`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshGenerator] : brs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers/SmartMesh] : brt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.MeshRendererBuffers] : bru
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonRendererInstruction] : brv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineMesh] : brw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.BlendModeMaterialsAsset/AtlasMaterialCache] : brx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttributeBase] : bry
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineBone] : brz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSlot] : bsa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAnimation] : bsb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineEvent] : bsc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineIkConstraint] : bsd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineTransformConstraint] : bse
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpinePathConstraint] : bsf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineSkin] : bsg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAttachment] : bsh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SpineAtlasRegion] : bsi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.SkeletonExtensions] : bsj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimation] : bsk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationComplete] : bsl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineAnimationEnd] : bsm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineEvent] : bsn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.WaitForSpineTrackEntryEnd] : bso
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AnimationTools.TimelineExtensions] : bsp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentCloneExtensions] : bsq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.AttachmentRegionExtensions] : bsr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.AttachmentTools.SkinUtilities] : bss
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes/MaterialWithRefcount] : bst
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] : bsu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] : bsv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] : bsw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionary`2] : bsx`2
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.OrderedDictionaryDebugView`2] : bsy`2
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[spine-unity] Spine.Collections.CollectionExtensions] : bsz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpService] : bta
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxCmpError] : btb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents/AppLovin] : btc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxEvents] : btd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdk] : bte
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] : btf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] : btg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/AdInfo] : bth
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo/<>c] : bti
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/WaterfallInfo] : btj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo/<>c] : btk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/NetworkResponseInfo] : btl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] : btm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] : btn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] : bto
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkBase] : btp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] AdPositionExtenstion] : btq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] : btr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] : bts
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] : btt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] : btu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] : btv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] : btw`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] : btx`2
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] : bty`3
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkCallbacks] : btz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkiOS] : bua
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkLogger] : bub
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass34_0] : buc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSdkUtils] : bud
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] : bue
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/Task] : bug
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper/DestryAdTask] : buh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] AdHelper] : bui
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] : bul
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] : bum
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] IKwaiAdListener] : bun
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] : buo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiAdsMgr] : bup
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiLog] : buq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdListener] : bur
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] : bus
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiInterAd] : but
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdListener] : buu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] : buv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] KwaiVideoAd] : buw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bux
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : buz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleAttribute] : bva
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleCustomTypeParserAttribute] : bvb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodAttribute] : bvc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.CircularBuffer`1] : bvd`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DynamicCircularBuffer`1] : bve`1
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.ConsoleMethodInfo] : bvf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogConsole/<>c] : bvg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntry] : bvh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogEntryContentEqualityComparer] : bvi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[IngameDebugConsole.Runtime] IngameDebugConsole.DebugLogPopup/d__25] : bvj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] : bvk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] : bvl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] : bvm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFInAppEvents] : bvn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] InAppPurchaseValidationResult] : bvo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ProductPurchase] : bvp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ValidationFailureData] : bvq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionValidationResult] : bvr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchase] : bvs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CanceledStateContext] : bvt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ExternalAccountIdentifiers] : bvu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionPurchaseLineItem] : bvv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PausedStateContext] : bvw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscribeWithGoogleInfo] : bvx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] TestPurchase] : bvy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeveloperInitiatedCancellation] : bvz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] ReplacementCancellation] : bwa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SystemInitiatedCancellation] : bwb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UserInitiatedCancellation] : bwc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AutoRenewingPlan] : bwd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] DeferredItemReplacement] : bwe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] OfferDetails] : bwf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] PrepaidPlan] : bwg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] CancelSurveyResult] : bwh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] SubscriptionItemPriceChangeDetails] : bwi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] Money] : bwj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Parser] : bwl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json/Serializer] : bwm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[AppsFlyer] AFMiniJSON.Json] : bwn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationRequest] : bwp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotification] : bwq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAction] : bwr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSTextInputNotificationAction] : bws
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategory] : bwt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/<>c] : bwu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter] : bwv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTrigger] : bww
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bwx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter] : bwy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationSchedule] : bwz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionRequest] : bxa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bxb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bxc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimationExtensions] : bxd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass1_0] : bxe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts/<>c__DisplayClass2_0] : bxf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenProShortcuts] : bxg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass0_0] : bxh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass10_0] : bxi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass1_0] : bxj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass2_0] : bxk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass4_0] : bxl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass5_0] : bxm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass6_0] : bxn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass7_0] : bxo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass8_0] : bxp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText/<>c__DisplayClass9_0] : bxq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.ShortcutExtensionsTMPText] : bxr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass32_0] : bxs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass33_0] : bxt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass34_0] : bxu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass35_0] : bxv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass37_0] : bxw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass38_0] : bxx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass39_0] : bxy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass41_0] : bxz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] : bya
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] : byb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] : byc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] : byd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : bye
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : byf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass0_0] : byg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass1_0] : byh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio/<>c__DisplayClass2_0] : byi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleAudio] : byj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass0_0] : byk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass10_0] : byl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass1_0] : bym
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass2_0] : byn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass3_0] : byo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass4_0] : byp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass5_0] : byq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass6_0] : byr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass7_0] : bys
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass8_0] : byt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics/<>c__DisplayClass9_0] : byu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics] : byv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass0_0] : byw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass1_0] : byx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass2_0] : byy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass3_0] : byz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass4_0] : bza
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass5_0] : bzb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D/<>c__DisplayClass6_0] : bzc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModulePhysics2D] : bzd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass0_0] : bze
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass1_0] : bzf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite/<>c__DisplayClass3_0] : bzg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleSprite] : bzh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/Utils] : bzi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass0_0] : bzj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass10_0] : bzk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass11_0] : bzl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass12_0] : bzm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass13_0] : bzn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass14_0] : bzo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass15_0] : bzp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass16_0] : bzq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass17_0] : bzr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass18_0] : bzs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass19_0] : bzt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass1_0] : bzu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass20_0] : bzv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass21_0] : bzw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass22_0] : bzx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass23_0] : bzy
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass24_0] : bzz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass25_0] : caa
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass26_0] : cab
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass27_0] : cac
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass28_0] : cad
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass29_0] : cae
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass2_0] : caf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass30_0] : cag
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass31_0] : cah
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass32_0] : cai
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass33_0] : caj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass34_0] : cak
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass35_0] : cal
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass36_0] : cam
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass37_0] : cao
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass38_0] : cap
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass39_0] : caq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass3_0] : car
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass40_0] : cas
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass4_0] : cat
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass5_0] : cau
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass7_0] : cav
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass8_0] : caw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI/<>c__DisplayClass9_0] : cax
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUI] : cay
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass8_0] : caz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion/<>c__DisplayClass9_0] : cba
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUnityVersion] : cbb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForCompletion] : cbc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForRewind] : cbd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForKill] : cbe
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForElapsedLoops] : cbf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] : cbg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] : cbh
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction] : cbi
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] : cbj
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] : cbk
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cbl
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] MainThreadUtil/<>c__DisplayClass9_0] : cbm
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/MainThreadAwaiter] : cbn
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate/d__4] : cbo
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] WaitForUpdate] : cbp
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] : cbq
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.IWebSocket] : cbr
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketHelpers] : cbs
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketException] : cbt
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketUnexpectedException] : cbu
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidArgumentException] : cbv
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketInvalidStateException] : cbw
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread/<>c] : cbx
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WaitForBackgroundThread] : cby
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocket] : cbz
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[endel.nativewebsocket] NativeWebSocket.WebSocketFactory] : cca
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] jz79f_Cl] : ccb
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] Loom/yARGiXY6] : ccc
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] Loom] : ccd
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] ekir75Dy] : cce
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] bIm5AGvY] : ccf
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] 0nmBbgpv] : ccg
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.Timer/TimerManager/<>c] : cch
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.Timer] : cci
+[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found a new Type Name [[NCWWA6A0SDK] UnityTimer.TimerExtensions] : ccj
[Info][OPS.OBF][OnFindMemberNames_Assemblies] Process component Method - Obfuscation
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_uid()] : cci
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_device()] : ccj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_os_ver()] : cck
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_network()] : ccl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_device_id()] : ccm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_pack_name()] : ccn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_version()] : cco
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_channel()] : ccp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_level()] : ccq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_message()] : ccr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType0`11::get_stacktrace()] : ccs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType1`2::get_assembly()] : cct
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] j__TPar <>f__AnonymousType1`2::get_type()] : ccu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/<>c__DisplayClass10_0::b__0(UnityEngine.Texture)] : ccv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/<>c__DisplayClass3_0::b__0(UnityEngine.Sprite)] : ccw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/<>c__DisplayClass8_0::b__0(FairyGUI.NTexture)] : ccx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/<>c__DisplayClass8_0::b__1(FairyGUI.NTexture)] : ccy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/<>c__DisplayClass8_1::b__2(UnityEngine.Sprite)] : ccz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__9::System.IDisposable.Dispose()] : cda
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__9::System.Collections.Generic.IEnumerator.get_Current()] : cdb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__9::System.Collections.IEnumerator.Reset()] : cdc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__9::System.Collections.IEnumerator.get_Current()] : cdd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__4::System.IDisposable.Dispose()] : cde
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__4::System.Collections.Generic.IEnumerator.get_Current()] : cdf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__4::System.Collections.IEnumerator.Reset()] : cdg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__4::System.Collections.IEnumerator.get_Current()] : cdh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__6::System.IDisposable.Dispose()] : cdi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__6::System.Collections.Generic.IEnumerator.get_Current()] : cdj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper/d__6::System.Collections.IEnumerator.Reset()] : cdk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object TextureHelper/d__6::System.Collections.IEnumerator.get_Current()] : cdl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetNTexture(System.String,System.String,UnityEngine.Events.UnityAction`1)] : cdm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Collections.IEnumerator TextureHelper::GetLocalTexture(System.String,System.Action`1)] : cdn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetCardIcon(System.Boolean,UnityEngine.Events.UnityAction`1)] : cdo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Collections.IEnumerator TextureHelper::GetTextureFromNet(System.String,System.Int32,System.String,System.Action`1)] : cdp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetItemIcon(System.Int32,UnityEngine.Events.UnityAction`1)] : cdq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::SetAvatarToLoader(System.Int32,FairyGUI.GLoader,System.Boolean)] : cdr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Collections.IEnumerator TextureHelper::GetAvatarLocal(System.Int32,System.Action`1)] : cds
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetFaceBookAvatar(System.Int32,System.Action`1)] : cdt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetSelfFaceBookAvatar(System.Action`1)] : cdu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String TextureHelper::GetBankIconUrl(System.String)] : cdv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void TextureHelper::GetGalleryLocal(System.Int32,System.Action`1)] : cdw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void DataMgr/<>c__DisplayClass3_0`1::b__0(T,T)] : cdx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void DataMgr::InitPreferences(System.String)] : cdy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] SGModule.DataStorage.DataStorage`1 DataMgr::BindDataStorage(System.String,System.String,T)] : cdz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ConsoleProDebug::Clear()] : cea
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ConsoleProDebug::LogToFilter(System.String,System.String)] : ceb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ConsoleProDebug::LogAsType(System.String,System.String)] : cec
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ConsoleProDebug::Watch(System.String,System.String)] : ced
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ConsoleProDebug::Search(System.String)] : cee
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] AnimationCurveData AnimationCurveData::get_Instance()] : cef
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] FairyGUI.GTweener CommonExpand::FadeIn(FairyGUI.GObject,System.Single,System.Single)] : ceg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] FairyGUI.GTweener CommonExpand::FadeOut(FairyGUI.GObject,System.Single,System.Single)] : ceh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void CommonExpand::SetClick(FairyGUI.GObject,System.Action,System.Boolean,System.Boolean)] : cei
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void CommonExpand::SafeKill(DG.Tweening.Tween)] : cej
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] Obj FXPool`1::GetObject(T)] : cek
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void FXPool`1::AddKey(T)] : cel
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] Obj FXPool`1::LoadObject(T)] : cem
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void FXPool`1::RecObject(T,UnityEngine.Object)] : cen
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void FXPool`1::RemoveKey(T)] : ceo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void FXPool`1::RemoveAll()] : cep
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String MD5Kit::GetFileMD5(System.String)] : ceq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String MD5Kit::GetStringMD5(System.String)] : cer
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String MD5Kit::MD5String1(System.String)] : ces
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__0_0(System.Boolean)] : cet
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__0_1()] : ceu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__1_0()] : cev
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__2_0()] : cew
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__9_0()] : cex
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__9_1()] : cey
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__10_0()] : cez
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__19_0(System.Boolean)] : cfa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__20_0(System.Boolean,System.String)] : cfb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo/<>c::b__23_0(System.Int32)] : cfc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::ShowAdmobInter()] : cfd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::Track()] : cfe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::GetCountryCode()] : cff
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::ShowH5()] : cfg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::ShowH5WebView()] : cfh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::ShowH5(UnityEngine.RectTransform)] : cfi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::HideH5()] : cfj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::CheckShowH5(UnityEngine.UI.Image)] : cfk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::TrackLevel()] : cfl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::GetWithDrawConfigs()] : cfm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::CreateWithDrawOrder()] : cfn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::GetWithDrawOrders()] : cfo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::Init()] : cfp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String NCWWA6A0SDKDemo::GetSdkVersion()] : cfq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::b__17_0(System.Boolean,System.String)] : cfr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void NCWWA6A0SDKDemo::g__GameConfig|23_1(System.Boolean,System.String)] : cfs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c::b__18_0()] : cft
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c::b__18_2()] : cfu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass18_0::b__1()] : cfv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass18_0::b__3()] : cfw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass18_0::b__4()] : cfx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass18_0::b__5()] : cfy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass5_0::b__0()] : cfz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager/<>c__DisplayClass6_0::b__0(System.Boolean)] : cga
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::Redeem(AdRedeemData)] : cgb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::ShowVideoAd(System.String,System.Action)] : cgc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::SetWatchAd(System.String,FGUI.Common_01.btn_watchAd,System.Action)] : cgd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::removeWatchAd()] : cge
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::updateWatchCD()] : cgf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 AdRedeemManager::GetCeilingNeedAds(System.String)] : cgg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean AdRedeemManager::checkIsCanReceive(System.String)] : cgh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::checkBtnState(FGUI.Common_01.btn_watchAd,System.String)] : cgi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::RunAllAction()] : cgj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::startAction()] : cgk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::stopAction()] : cgl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 AdRedeemManager::GetLookRewardADNum()] : cgm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::SetLookRewardADNum(System.Int32)] : cgn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::Start()] : cgo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::Destroy()] : cgp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void AdRedeemManager::SendEventClickByName(System.String,System.String)] : cgq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_0()] : cgr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_1()] : cgs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_2()] : cgt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_3(System.String)] : cgu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_4()] : cgv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_5(System.String)] : cgw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_6()] : cgx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_7(System.String)] : cgy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_8()] : cgz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_9(System.String)] : cha
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_10()] : chb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_11(System.String)] : chc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_12()] : chd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_13(System.String)] : che
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_14()] : chf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_15(System.String)] : chg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_16()] : chh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_17(System.String)] : chi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_18()] : chj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_19()] : chk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ChillConnectRoot/<>c::b__3_20()] : chl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot/<>c::b__3_21(System.String)] : chm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot::OnLauncher()] : chn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ChillConnectRoot::BuildGMTool()] : cho
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ErrorLogger::HandleLog(System.String,System.String,UnityEngine.LogType)] : chp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ErrorLogger::SendErrorToServer(System.String,System.String)] : chq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 InputHelper::get_TouchCount()] : chr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Touch InputHelper::GetTouch(System.Int32)] : chs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean InputHelper::GetMouseButtonDown(System.Int32)] : cht
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean InputHelper::GetMouseButton(System.Int32)] : chu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean InputHelper::GetMouseButtonUp(System.Int32)] : chv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Vector3 InputHelper::get_MousePosition()] : chw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] LevelManager LevelManager::get_Instance()] : chx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void LevelManager::set_Instance(LevelManager)] : chy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ChillConnect.LevelConfig LevelManager::get_CurrentLevel()] : chz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void LevelManager::set_CurrentLevel(ChillConnect.LevelConfig)] : cia
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean LevelManager::LoadLevel(System.Int32)] : cib
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean LevelManager::LoadLevelByName(System.String)] : cic
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String MaxPayManager/<>c::b__11_0(System.Collections.Generic.KeyValuePair`2)] : cid
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/<>c::b__16_0()] : cie
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/<>c__DisplayClass14_0::b__0(SGModule.Net.ResponseData`1)] : cif
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/<>c__DisplayClass14_1::b__2()] : cig
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/<>c__DisplayClass14_1::b__1()] : cih
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/<>c__DisplayClass5_0::b__0(SGModule.Net.ResponseData`1)] : cii
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/d__11::System.IDisposable.Dispose()] : cij
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/d__11::<>m__Finally1()] : cik
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object MaxPayManager/d__11::System.Collections.Generic.IEnumerator.get_Current()] : cil
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager/d__11::System.Collections.IEnumerator.Reset()] : cim
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object MaxPayManager/d__11::System.Collections.IEnumerator.get_Current()] : cin
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::Buy(ApplePayClass)] : cio
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::MaxPay(ApplePayClass)] : cip
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::SavePayData(System.String,ApplePayClass)] : ciq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ApplePayClass MaxPayManager::GetPayData(System.String)] : cir
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean MaxPayManager::GetPayStatus()] : cis
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Collections.IEnumerator MaxPayManager::ProcessPayData()] : cit
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::StopPayCoroutine()] : ciu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::PaySuccess()] : civ
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::PaySuccess(System.String)] : ciw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::reCreatPur()] : cix
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::OnPayFailed(System.String)] : ciy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean MaxPayManager::CheckIsOpen(System.String)] : ciz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::GetPayPrice(ApplePayClass)] : cja
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Decimal MaxPayManager::GetGoldRewradNum(System.Int32)] : cjb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void MaxPayManager::GetPayReward(System.Decimal)] : cjc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void OpenBrowser::OpenURL(System.String)] : cjd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass3_0::b__0(SGModule.ApplePay.ApplePayBackType,AppleResponseData)] : cje
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String PurchasingManager::GetPaySku(PayType)] : cjf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void PurchasingManager::Purchase(SGModule.ApplePay.ApplePayData)] : cjg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Action`2 PurchasingManager::ApplePaySuccessCallback(SGModule.ApplePay.ApplePayData)] : cjh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String PurchasingManager::SetSku(SGModule.ApplePay.ApplePayData)] : cji
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void PurchasingManager::SendEventClickByName(System.String,System.String)] : cjj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Single CommonTools::CalculateScale(UnityEngine.Vector2,UnityEngine.Vector2)] : cjk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Single CommonTools::GetScale()] : cjl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void SaveingPotClass::SetStatus(SaveingPotTaskStatus)] : cjm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SaveingPotClass::GetAmountStr()] : cjn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void SaveingPotHelper::CheckSaveingPot()] : cjo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void SaveingPotHelper::CreatSaveingPotItem()] : cjp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean SaveingPotHelper::TestingClearTime()] : cjq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void SaveingPotHelper::ResetHistory()] : cjr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SaveingPotHelper::getChString(System.Single)] : cjs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SaveingPotHelper::getChNumber(System.Single)] : cjt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem/<>c__DisplayClass10_1::b__0(System.Decimal)] : cju
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem/<>c__DisplayClass10_1::b__1()] : cjv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem/<>c__DisplayClass10_1::b__2()] : cjw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::Init()] : cjx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::AddListener()] : cjy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::OnGetReward(System.Object)] : cjz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean RewardSystem::IsRewardFly(ChillConnect.RewardData)] : cka
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean RewardSystem::IsRewardValueChange(ChillConnect.RewardData)] : ckb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean RewardSystem::IsRewardNumber(ChillConnect.RewardData)] : ckc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean RewardSystem::IsRewardDialog(ChillConnect.RewardData)] : ckd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::GetReward(ChillConnect.RewardData)] : cke
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::PlayReward(ChillConnect.RewardData)] : ckf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::SetRewardValueChangeState(System.Int32,System.Boolean)] : ckg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void RewardSystem::OnChangeValue(System.Int32,System.Decimal)] : ckh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] Newtonsoft.Json.JsonSerializerSettings SerializeUtil/<>c::<.cctor>b__0_0()] : cki
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SerializeUtil::ToJson(System.Object)] : ckj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SerializeUtil::ToJsonIndented(System.Object)] : ckk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SerializeUtil::ToJson(System.Object,System.Type)] : ckl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String SerializeUtil::ToJson(System.Object)] : ckm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T SerializeUtil::ToObject(System.String)] : ckn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void SkipUnityLogo::AsyncSkip()] : cko
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool/<>c__DisplayClass22_0::b__0()] : ckp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool/<>c__DisplayClass22_0::b__1(System.String)] : ckq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::InitializeStyles()] : ckr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::StartLayout()] : cks
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::AddButton(System.String,System.Action)] : ckt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::AddLabel(System.String)] : cku
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::AddInputField(System.String,System.String,System.String,System.Action`1)] : ckv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::AddSeparator(System.String)] : ckw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::DrawLine(UnityEngine.Rect)] : ckx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::AddItem(GMToolItem)] : cky
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::UpdateItems()] : ckz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GMTool::b__13_0()] : cla
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean Keychain::Save(System.String,System.String)] : clb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String Keychain::Get(System.String)] : clc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean Keychain::Delete(System.String)] : cld
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean GameConfig::get_isRelease()] : cle
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean GameConfig::get_enabledLog()] : clf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void GameConfig::set_enabledLog(System.Boolean)] : clg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3AutoSave/<>c::b__13_0(UnityEngine.Component)] : clh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3AutoSaveMgr/<>c::b__13_0(UnityEngine.GameObject)] : cli
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3AutoSaveMgr ES3AutoSaveMgr::get_Current()] : clj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3AutoSaveMgr ES3AutoSaveMgr::get_Instance()] : clk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::Save()] : cll
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::Load()] : clm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::AddAutoSave(ES3AutoSave)] : cln
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::RemoveAutoSave(ES3AutoSave)] : clo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::GetAutoSaves()] : clp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3AutoSaveMgr::GetDepth(UnityEngine.Transform)] : clq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3AutoSaveMgr::ManageSlots()] : clr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,System.Object)] : cls
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,System.Object,System.String)] : clt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,System.Object,System.String,ES3Settings)] : clu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,System.Object,ES3Settings)] : clv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,T)] : clw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,T,System.String)] : clx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,T,System.String,ES3Settings)] : cly
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Save(System.String,T,ES3Settings)] : clz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.Byte[])] : cma
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.Byte[],System.String)] : cmb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.Byte[],System.String,ES3Settings)] : cmc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.Byte[],ES3Settings)] : cme
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.String)] : cmf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.String,System.String)] : cmg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.String,System.String,ES3Settings)] : cmh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveRaw(System.String,ES3Settings)] : cmi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.Byte[])] : cmj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.Byte[],System.String,ES3Settings)] : cmk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.Byte[],ES3Settings)] : cml
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.String)] : cmm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.String,System.String)] : cmn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.String,System.String,ES3Settings)] : cmo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::AppendRaw(System.String,ES3Settings)] : cmp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,System.String)] : cmq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,System.String,ES3Settings)] : cmr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,ES3Settings)] : cms
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,System.Int32,System.String)] : cmt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,System.Int32,System.String,ES3Settings)] : cmu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::SaveImage(UnityEngine.Texture2D,System.Int32,ES3Settings)] : cmv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::SaveImageToBytes(UnityEngine.Texture2D,System.Int32,ES3/ImageType)] : cmw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String)] : cmx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.String)] : cmy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.String,ES3Settings)] : cmz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,ES3Settings)] : cna
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.Object)] : cnb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.String,System.Object)] : cnc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.String,System.Object,ES3Settings)] : cnd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Load(System.String,System.Object,ES3Settings)] : cne
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String)] : cnf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,System.String)] : cng
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,System.String,ES3Settings)] : cnh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,ES3Settings)] : cni
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,T)] : cnj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,System.String,T)] : cnk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,System.String,T,ES3Settings)] : cnl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Load(System.String,T,ES3Settings)] : cnm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.Object)] : cnn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.String,System.Object)] : cno
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.String,System.Object,ES3Settings)] : cnp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.Object,ES3Settings)] : cnq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,T)] : cnr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.String,T)] : cns
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,System.String,T,ES3Settings)] : cnt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::LoadInto(System.String,T,ES3Settings)] : cnu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadString(System.String,System.String,ES3Settings)] : cnv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadString(System.String,System.String,System.String,ES3Settings)] : cnw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::LoadRawBytes()] : cnx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::LoadRawBytes(System.String)] : cny
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::LoadRawBytes(System.String,ES3Settings)] : cnz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::LoadRawBytes(ES3Settings)] : coa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadRawString()] : cob
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadRawString(System.String)] : coc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadRawString(System.String,ES3Settings)] : cod
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::LoadRawString(ES3Settings)] : coe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Texture2D ES3::LoadImage(System.String)] : cof
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Texture2D ES3::LoadImage(System.String,ES3Settings)] : cog
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Texture2D ES3::LoadImage(ES3Settings)] : coh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.Texture2D ES3::LoadImage(System.Byte[])] : coi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.AudioClip ES3::LoadAudio(System.String,UnityEngine.AudioType)] : coj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.AudioClip ES3::LoadAudio(System.String,UnityEngine.AudioType,ES3Settings)] : cok
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::Serialize(T,ES3Settings)] : com
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::Serialize(System.Object,ES3Types.ES3Type,ES3Settings)] : con
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3::Deserialize(System.Byte[],ES3Settings)] : coo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3::Deserialize(ES3Types.ES3Type,System.Byte[],ES3Settings)] : cop
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeserializeInto(System.Byte[],T,ES3Settings)] : coq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeserializeInto(ES3Types.ES3Type,System.Byte[],T,ES3Settings)] : cor
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::EncryptBytes(System.Byte[],System.String)] : cos
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::DecryptBytes(System.Byte[],System.String)] : cot
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::EncryptString(System.String,System.String)] : cou
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::DecryptString(System.String,System.String)] : cov
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::CompressBytes(System.Byte[])] : cow
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3::DecompressBytes(System.Byte[])] : cox
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::CompressString(System.String)] : coy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3::DecompressString(System.String)] : coz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteFile()] : cpa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteFile(System.String)] : cpb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteFile(System.String,ES3Settings)] : cpc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteFile(ES3Settings)] : cpd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyFile(System.String,System.String)] : cpe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyFile(System.String,System.String,ES3Settings,ES3Settings)] : cpf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyFile(ES3Settings,ES3Settings)] : cpg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameFile(System.String,System.String)] : cph
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameFile(System.String,System.String,ES3Settings,ES3Settings)] : cpi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameFile(ES3Settings,ES3Settings)] : cpj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyDirectory(System.String,System.String)] : cpk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyDirectory(System.String,System.String,ES3Settings,ES3Settings)] : cpl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CopyDirectory(ES3Settings,ES3Settings)] : cpm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameDirectory(System.String,System.String)] : cpn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameDirectory(System.String,System.String,ES3Settings,ES3Settings)] : cpo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::RenameDirectory(ES3Settings,ES3Settings)] : cpp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteDirectory(System.String)] : cpq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteDirectory(System.String,ES3Settings)] : cpr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteDirectory(ES3Settings)] : cps
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteKey(System.String)] : cpt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteKey(System.String,System.String)] : cpu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteKey(System.String,System.String,ES3Settings)] : cpv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::DeleteKey(System.String,ES3Settings)] : cpw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::KeyExists(System.String)] : cpx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::KeyExists(System.String,System.String)] : cpy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::KeyExists(System.String,System.String,ES3Settings)] : cpz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::KeyExists(System.String,ES3Settings)] : cqa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::FileExists()] : cqb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::FileExists(System.String)] : cqc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::FileExists(System.String,ES3Settings)] : cqd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::FileExists(ES3Settings)] : cqe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::DirectoryExists(System.String)] : cqf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::DirectoryExists(System.String,ES3Settings)] : cqg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::DirectoryExists(ES3Settings)] : cqh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetKeys()] : cqi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetKeys(System.String)] : cqj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetKeys(System.String,ES3Settings)] : cqk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetKeys(ES3Settings)] : cql
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetFiles()] : cqm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetFiles(System.String)] : cqn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetFiles(System.String,ES3Settings)] : cqo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetFiles(ES3Settings)] : cqp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetDirectories()] : cqq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetDirectories(System.String)] : cqr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetDirectories(System.String,ES3Settings)] : cqs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3::GetDirectories(ES3Settings)] : cqt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CreateBackup()] : cqu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CreateBackup(System.String)] : cqv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CreateBackup(System.String,ES3Settings)] : cqw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CreateBackup(ES3Settings)] : cqx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::RestoreBackup(System.String)] : cqy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::RestoreBackup(System.String,ES3Settings)] : cqz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3::RestoreBackup(ES3Settings)] : cra
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3::GetTimestamp()] : crb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3::GetTimestamp(System.String)] : crd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3::GetTimestamp(System.String,ES3Settings)] : cre
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3::GetTimestamp(ES3Settings)] : crf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::StoreCachedFile()] : crg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::StoreCachedFile(System.String)] : crh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::StoreCachedFile(System.String,ES3Settings)] : cri
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::StoreCachedFile(ES3Settings)] : crj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CacheFile()] : crk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CacheFile(System.String)] : crl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CacheFile(System.String,ES3Settings)] : crm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::CacheFile(ES3Settings)] : crn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3::Init()] : cro
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Sync()] : crp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Sync(System.String,ES3Settings)] : crq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Sync(ES3Settings)] : crr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Clear()] : crs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3File::GetKeys()] : crt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Save(System.String,T)] : cru
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::SaveRaw(System.Byte[],ES3Settings)] : crv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::AppendRaw(System.Byte[],ES3Settings)] : crw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3File::Load(System.String)] : crx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3File::Load(System.String,System.Object)] : cry
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3File::Load(System.String)] : crz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3File::Load(System.String,T)] : csa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::LoadInto(System.String,T)] : csb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3File::LoadRawBytes()] : csc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3File::LoadRawString()] : csd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3File::GetBytes(ES3Settings)] : cse
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::DeleteKey(System.String)] : csf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3File::KeyExists(System.String)] : csg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3File::Size()] : csh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Type ES3File::GetKeyType(System.String)] : csi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3File ES3File::GetOrCreateCachedFile(ES3Settings)] : csj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::CacheFile(ES3Settings)] : csk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::Store(ES3Settings)] : csl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::RemoveCachedFile(ES3Settings)] : csm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::CopyCachedFile(ES3Settings,ES3Settings)] : csn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3File::DeleteKey(System.String,ES3Settings)] : cso
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3File::KeyExists(System.String,ES3Settings)] : csp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3File::FileExists(ES3Settings)] : csq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3File::GetKeys(ES3Settings)] : csr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[] ES3File::GetFiles()] : css
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3File::GetTimestamp(ES3Settings)] : cst
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::get_ColumnCount()] : csu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::get_RowCount()] : csv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::GetColumnLength(System.Int32)] : csw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3Spreadsheet::GetRowLength(System.Int32)] : csx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::SetCell(System.Int32,System.Int32,System.Object)] : csy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::SetCellString(System.Int32,System.Int32,System.String)] : csz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Spreadsheet::GetCell(System.Int32,System.Int32)] : cta
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Spreadsheet::GetCell(System.Type,System.Int32,System.Int32)] : ctb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Load(System.String)] : ctc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Load(System.String,ES3Settings)] : ctd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Load(ES3Settings)] : cte
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::LoadRaw(System.String)] : ctf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::LoadRaw(System.String,ES3Settings)] : ctg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Load(System.IO.Stream,ES3Settings)] : cth
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(System.String)] : cti
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(System.String,ES3Settings)] : ctj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(ES3Settings)] : ctk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(System.String,System.Boolean)] : ctl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(System.String,ES3Settings,System.Boolean)] : ctm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Spreadsheet::Save(ES3Settings,System.Boolean)] : ctn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Spreadsheet::Escape(System.String,System.Boolean)] : cto
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Spreadsheet::Unescape(System.String)] : ctp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String[0...,0...] ES3Spreadsheet::ToArray()] : ctq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader/ES3ReaderPropertyEnumerator/d__2::System.IDisposable.Dispose()] : ctr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderPropertyEnumerator/d__2::System.Collections.Generic.IEnumerator.get_Current()] : cts
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader/ES3ReaderPropertyEnumerator/d__2::System.Collections.IEnumerator.Reset()] : ctt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderPropertyEnumerator/d__2::System.Collections.IEnumerator.get_Current()] : ctu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader/ES3ReaderRawEnumerator/d__2::System.IDisposable.Dispose()] : ctv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderRawEnumerator/d__2::System.Collections.Generic.IEnumerator.get_Current()] : ctw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader/ES3ReaderRawEnumerator/d__2::System.Collections.IEnumerator.Reset()] : ctx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader/ES3ReaderRawEnumerator/d__2::System.Collections.IEnumerator.get_Current()] : cty
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int32 ES3Reader::Read_int()] : ctz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Single ES3Reader::Read_float()] : cua
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::Read_bool()] : cub
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Char ES3Reader::Read_char()] : cuc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Decimal ES3Reader::Read_decimal()] : cud
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Double ES3Reader::Read_double()] : cue
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int64 ES3Reader::Read_long()] : cuf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.UInt64 ES3Reader::Read_ulong()] : cug
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte ES3Reader::Read_byte()] : cuh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.SByte ES3Reader::Read_sbyte()] : cui
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int16 ES3Reader::Read_short()] : cuj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.UInt16 ES3Reader::Read_ushort()] : cuk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.UInt32 ES3Reader::Read_uint()] : cul
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Reader::Read_string()] : cum
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3Reader::Read_byteArray()] : cun
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int64 ES3Reader::Read_ref()] : cuo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Reader::ReadPropertyName()] : cup
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Type ES3Reader::ReadKeyPrefix(System.Boolean)] : cuq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::ReadKeySuffix()] : cur
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Byte[] ES3Reader::ReadElement(System.Boolean)] : cus
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::Goto(System.String)] : cut
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::StartReadObject()] : cuu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::EndReadObject()] : cuv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::StartReadDictionary()] : cuw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::EndReadDictionary()] : cux
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::StartReadDictionaryKey()] : cuy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::EndReadDictionaryKey()] : cuz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::StartReadDictionaryValue()] : cva
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::EndReadDictionaryValue()] : cvb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::StartReadCollection()] : cvc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::EndReadCollection()] : cvd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::StartReadCollectionItem()] : cve
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Reader::EndReadCollectionItem()] : cvf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader/ES3ReaderPropertyEnumerator ES3Reader::get_Properties()] : cvg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader/ES3ReaderRawEnumerator ES3Reader::get_RawEnumerator()] : cvh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::Skip()] : cvi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::Read()] : cvj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::ReadInto(System.Object)] : cvk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::ReadProperty()] : cvl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::ReadProperty(ES3Types.ES3Type)] : cvm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Int64 ES3Reader::ReadRefProperty()] : cvn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Type ES3Reader::ReadType()] : cvo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader::SetPrivateProperty(System.String,System.Object,System.Object)] : cvp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Reader::SetPrivateField(System.String,System.Object,System.Object)] : cvq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::Read(System.String)] : cvr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::Read(System.String,T)] : cvs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::ReadInto(System.String,T)] : cvt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::ReadObject(System.Object,ES3Types.ES3Type)] : cvu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::ReadObject(ES3Types.ES3Type)] : cvv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] T ES3Reader::Read(ES3Types.ES3Type)] : cvw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Reader::ReadInto(System.Object,ES3Types.ES3Type)] : cvx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Type ES3Reader::ReadTypeFromHeader()] : cvy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create()] : cvz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.String)] : cwa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.String,ES3Settings)] : cwb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(ES3Settings)] : cwc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.Byte[])] : cwd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.Byte[],ES3Settings)] : cwe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.IO.Stream,ES3Settings)] : cwf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Reader ES3Reader::Create(System.IO.Stream,ES3Settings,System.Boolean)] : cwg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3CreateSlot::TryCreateNewSlot()] : cwh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3CreateSlot::CreateNewSlot(System.String)] : cwi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3CreateSlot::b__4_0()] : cwj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Slot::TrySelectSlot()] : cwk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Slot::SelectSlot()] : cwl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Slot::MarkSlotForDeletion()] : cwm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Slot::UnmarkSlotForDeletion()] : cwn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Slot::DeleteSlot()] : cwo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Slot::GetSlotPath()] : cwp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3SlotDialog::b__2_0()] : cwq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.DateTime ES3SlotManager/<>c::b__13_0(System.ValueTuple`2)] : cwr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3SlotManager::InstantiateSlots()] : cws
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] UnityEngine.GameObject ES3SlotManager::InstantiateSlot(System.String,System.DateTime)] : cwt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3SlotManager::ShowErrorDialog(System.String)] : cwu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3SlotManager::Close()] : cwv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3SlotManager::DestroySlots()] : cww
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3SlotManager::GetSlotPath(System.String)] : cwx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Defaults ES3Settings::get_defaultSettingsScriptableObject()] : cwy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Settings ES3Settings::get_defaultSettings()] : cwz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3Settings ES3Settings::get_unencryptedUncompressedSettings()] : cxa
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] ES3/Location ES3Settings::get_location()] : cxb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Settings::set_location(ES3/Location)] : cxc
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.String ES3Settings::get_FullPath()] : cxd
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Boolean ES3Settings::IsAbsolute(System.String)] : cxe
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Settings::CopyInto(ES3Settings)] : cxf
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__53::System.IDisposable.Dispose()] : cxg
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__53::<>m__Finally1()] : cxh
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__53::System.Collections.Generic.IEnumerator.get_Current()] : cxi
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__53::System.Collections.IEnumerator.Reset()] : cxj
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__53::System.Collections.IEnumerator.get_Current()] : cxk
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__44::System.IDisposable.Dispose()] : cxl
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__44::<>m__Finally1()] : cxm
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__44::System.Collections.Generic.IEnumerator.get_Current()] : cxn
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__44::System.Collections.IEnumerator.Reset()] : cxo
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__44::System.Collections.IEnumerator.get_Current()] : cxp
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__45::System.IDisposable.Dispose()] : cxq
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__45::<>m__Finally1()] : cxr
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__45::System.Collections.Generic.IEnumerator.get_Current()] : cxs
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__45::System.Collections.IEnumerator.Reset()] : cxt
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__45::System.Collections.IEnumerator.get_Current()] : cxu
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__61::System.IDisposable.Dispose()] : cxv
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__61::<>m__Finally1()] : cxw
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__61::System.Collections.Generic.IEnumerator.get_Current()] : cxx
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__61::System.Collections.IEnumerator.Reset()] : cxy
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__61::System.Collections.IEnumerator.get_Current()] : cxz
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__70::System.IDisposable.Dispose()] : cya
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Void ES3Cloud/d__70::<>m__Finally1()] : cyb
-[Info][OPS.OBF][OnFindMemberNames_Assemblies] Found new Method Name [[Assembly-CSharp] System.Object ES3Cloud/d__70::System.Collections.Generic.IEnumerator