Assets/Editor/GitHook.meta
File was renamed from Assets/Plugins/iOS/ADPuttingSDK.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: d95a6f9c81c59ab4eaa7ad232b61ae63 guid: b45371ce1cae5fb438a165e767126d87 folderAsset: yes timeCreated: 1529652239 timeCreated: 1535439458 licenseType: Pro DefaultImporter: userData: Assets/Editor/Logo/lxj_android.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Editor/Logo/lxj_android.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: 144cdedd544f26243a4a963ad15dc787 folderAsset: yes timeCreated: 1533884522 timeCreated: 1535015832 licenseType: Free DefaultImporter: userData: Assets/Editor/Logo/lxj_android/Icon.pngAssets/Editor/Logo/lxj_android/Icon.png.meta
File was renamed from Assets/Editor/Logo/lxj/Icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: f9a599944a42e3b46a3a7b0f93bf028c guid: 09b6f3fe686181a459a6b2c357839189 timeCreated: 1521082299 licenseType: Pro TextureImporter: Assets/Editor/Logo/lxj_android/SplashImage.pngAssets/Editor/Logo/lxj_android/SplashImage.png.meta
File was renamed from Assets/Editor/Logo/lxj/SplashImage.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: 33633bfb5c6c7bc4db0cc457e200e5ce guid: e208ee6e6a8032147952e90d4e4e44e9 timeCreated: 1520997354 licenseType: Pro TextureImporter: Assets/Editor/Logo/lxj_android/TB_DL_Logo.pngAssets/Editor/Logo/lxj_android/TB_DL_Logo.png.metacopy from Assets/Editor/Logo/lxj/TB_DL_Logo.png.meta copy to Assets/Editor/Logo/lxj_android/TB_DL_Logo.png.meta
File was copied from Assets/Editor/Logo/lxj/TB_DL_Logo.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: 6dc3be5110b15f54bb24359f22975e47 guid: 21c29d38e60357940baaaf843c82b6d9 timeCreated: 1534173665 licenseType: Free TextureImporter: Assets/Editor/Logo/lxj_ios.meta
File was renamed from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: 0b9a6f002a8801145847145e1f3b7618 folderAsset: yes timeCreated: 1533884522 timeCreated: 1535015832 licenseType: Free DefaultImporter: userData: Assets/Editor/Logo/lxj_ios/Icon.pngAssets/Editor/Logo/lxj_ios/Icon.png.metacopy from Assets/Editor/Logo/lxj/Icon.png.meta copy to Assets/Editor/Logo/lxj_ios/Icon.png.meta
File was copied from Assets/Editor/Logo/lxj/Icon.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: f9a599944a42e3b46a3a7b0f93bf028c guid: 4f7023b8fc847f54083dd0093e693c6a timeCreated: 1521082299 licenseType: Pro TextureImporter: Assets/Editor/Logo/lxj_ios/SplashImage.pngAssets/Editor/Logo/lxj_ios/SplashImage.png.metacopy from Assets/Editor/Logo/lxj/SplashImage.png.meta copy to Assets/Editor/Logo/lxj_ios/SplashImage.png.meta
File was copied from Assets/Editor/Logo/lxj/SplashImage.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: 33633bfb5c6c7bc4db0cc457e200e5ce guid: 872256d5dcabd334f9e9834486f8bfa2 timeCreated: 1520997354 licenseType: Pro TextureImporter: Assets/Editor/Logo/lxj_ios/TB_DL_Logo.pngAssets/Editor/Logo/lxj_ios/TB_DL_Logo.png.meta
File was renamed from Assets/Editor/Logo/lxj/TB_DL_Logo.png.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 guid: 6dc3be5110b15f54bb24359f22975e47 guid: 7413d44474aadf444bff663f4f5e2f99 timeCreated: 1534173665 licenseType: Free TextureImporter: Assets/Editor/SpritePacking/SpriteSettings.asset
@@ -444,3 +444,19 @@ maxTextureSize: 2048 textureFormat: 33 compressionQuality: 1 - folderName: TreasureSoulIcon meshType: 1 alphaSource: 1 platformSettings: - name: Standalone maxTextureSize: 256 textureFormat: 4 compressionQuality: 1 - name: Android maxTextureSize: 256 textureFormat: 47 compressionQuality: 1 - name: iPhone maxTextureSize: 256 textureFormat: 33 compressionQuality: 1 Assets/Editor/Tool/AssetsVersionMaker.cs
@@ -21,6 +21,12 @@ { continue; } if (fileInfo.FullName.Contains("DS_Store") || fileInfo.FullName.Contains("ds_store")) { continue; } relativePath = FileExtersion.GetFileRelativePath(_path, fileInfo.FullName); extersion = fileInfo.Extension; fileSize = fileInfo.Length; Assets/Editor/Tool/ClientPackage.cs
@@ -13,14 +13,17 @@ public static readonly string versionsFilePath = Application.dataPath + Path.DirectorySeparatorChar + "Editor/VersionConfigs/Versions.txt"; public static readonly string[] baseLevels = new string[] { "Assets/Resources/Scenes/Launch.unity", "Assets/Resources/Scenes/Empty.unity" }; public static string SDK_PLUGIN_PROJECT { public static string SDK_PLUGIN_PROJECT { get { return LocalSave.GetString("SDK_PROJECT_PATH"); } set { LocalSave.SetString("SDK_PROJECT_PATH", value); } } static string ANDROID_PLUGIN_PATH = Application.dataPath + "/Plugins/Android"; static string iOS_PLUGIN_PATH = Application.dataPath + "/Plugins/iOS/The2thWorldSDK"; static int packageIndex { static int packageIndex { get { return LocalSave.GetInt("ClientPackageIndex", 1); } set { LocalSave.SetInt("ClientPackageIndex", value); } } @@ -95,7 +98,7 @@ #if UNITY_ANDROID BuildApk(_sdkPath, _output, smallPackages[i], _development); #elif UNITY_IOS BuildIpa(smallPackages[i], _replace); BuildIpa(_sdkPath, smallPackages[i], _replace); #endif } } @@ -178,7 +181,7 @@ #if UNITY_ANDROID BuildApk(_sdkPath, _output, halfPackages[i], _development); #elif UNITY_IOS BuildIpa(halfPackages[i], _replace); BuildIpa(_sdkPath, halfPackages[i], _replace); #endif } } @@ -191,7 +194,7 @@ #if UNITY_ANDROID BuildApk(_sdkPath, _output, bigPackages[i], _development); #elif UNITY_IOS BuildIpa(bigPackages[i], _replace); BuildIpa(_sdkPath, bigPackages[i], _replace); #endif } } @@ -235,12 +238,9 @@ Directory.Delete(ANDROID_PLUGIN_PATH, true); } Debug.LogFormat("æ§è¡Android SDK æä»¶æ·è´ï¼from:{0};to:{1}", StringUtility.Contact(_sdkPath, "/Android/", versionConfig.appId), ANDROID_PLUGIN_PATH); FileExtersion.DirectoryCopy(StringUtility.Contact(_sdkPath, "/Android/", versionConfig.appId), ANDROID_PLUGIN_PATH); if (!versionConfig.appId.Equals("test")) { FileExtersion.DirectoryCopy(StringUtility.Contact(_sdkPath, "/æ¸ éå·®å¼/", versionConfig.productName), ANDROID_PLUGIN_PATH); } Debug.LogFormat("æ§è¡Android SDK æä»¶æ·è´ï¼from:{0};to:{1}", StringUtility.Contact(_sdkPath, "/Android/release"), ANDROID_PLUGIN_PATH); FileExtersion.DirectoryCopy(StringUtility.Contact(_sdkPath, "/Android/release"), ANDROID_PLUGIN_PATH); FileExtersion.DirectoryCopy(StringUtility.Contact(_sdkPath, "/ChannelDiff/", versionConfig.appId), ANDROID_PLUGIN_PATH); AssetDatabase.SaveAssets(); AssetDatabase.Refresh(); @@ -257,9 +257,19 @@ } } public static void BuildIpa(string _publisher, bool _replace) public static void BuildIpa(string _sdkPath, string _publisher, bool _replace) { PreBuild(_publisher); var versionName = string.Empty; var versionConfig = GetVersionConfig(_publisher, out versionName); if (!versionConfig.appId.Equals("test")) { FileExtersion.DirectoryCopy(StringUtility.Contact(_sdkPath, "/ChannelDiff/", versionConfig.appId), iOS_PLUGIN_PATH); } AssetDatabase.SaveAssets(); AssetDatabase.Refresh(); PlayerSettings.iOS.buildNumber = VersionConfig.Get().buildIndex.ToString(); PlayerSettings.iOS.appleDeveloperTeamID = VersionConfig.Get().appleDeveloperTeamID; Assets/Editor/Tool/UpdateSpritePackingSetting.cs
@@ -70,13 +70,20 @@ continue; } if (!setting.Equal(textureImporter)) if (!setting.Equal(textureImporter) || textureImporter.textureType != TextureImporterType.Sprite || textureImporter.spriteImportMode != SpriteImportMode.Single || textureImporter.mipmapEnabled != false || textureImporter.alphaIsTransparency != true || textureImporter.spritePackingTag != folderName || textureImporter.wrapMode != TextureWrapMode.Clamp || textureImporter.filterMode != FilterMode.Bilinear) { textureImporter.alphaSource = setting.alphaSource; textureImporter.textureType = TextureImporterType.Sprite; textureImporter.spriteImportMode = SpriteImportMode.Single; textureImporter.assetBundleName = StringUtility.Contact("ui/sprite/", setting.folderName.ToLower()); textureImporter.mipmapEnabled = false; textureImporter.alphaSource = setting.alphaSource; textureImporter.alphaIsTransparency = true; textureImporter.spritePackingTag = folderName; textureImporter.wrapMode = TextureWrapMode.Clamp; Assets/Editor/VersionConfigs/Versions.txt
@@ -1,6 +1,7 @@ Id name AppId VersionAuthority m_Version m_ClientPackageFlag m_Branch m_AssetAccess m_PartAssetPackage m_ProductName m_BundleIdentifier m_KeystoreFileName m_KeystorePassword m_KeystoreAlias m_KeystoreAliasPassword m_AppleDeveloperTeamID m_DebugVersion m_IsBanShu m_LogoPosition çæ¬æ è¯ çæ¬åç§° æ¸ éid çæ¬æéï¼0æ¯æµè¯çæ¬ï¼1æ¯åå¸çæ¬ çæ¬å· å®¢æ·ç«¯æ è¯ åæ¯ èµæº,0NullAsset,1HalfAsset,2FullAsset,3IgnoreDownLoad æ¯å¦åå ï¼0ä¸åå ï¼1åå 产åå 产åå å ç¾åæä»¶å ç¾åæä»¶å¯ç ç¾åæä»¶å«å ç¾åæä»¶å«åå¯ç å¼åè è´¦å·å¯ç æ¯å¦debugçæ¬ï¼0å¦1æ¯ æ¯å¦çç½²çæ¬ï¼0å¦1æ¯ ç»å½çé¢çLogoä½ç½® 9999 TheSecondWorld test 0 10.1000.1 aaa 0 1 1 å°å¹´ä¿®ä»ä¼ com.secondworld.snxxz thesecondworld thesecondworld2018 thesecondworld thesecondworld2018 1 0 (-15,64) 10000 TheSecondWorld test 0 99.99.99 aaa 0 3 0 å°å¹´ä¿®ä»ä¼ com.secondworld.snxxz thesecondworld thesecondworld2018 thesecondworld thesecondworld2018 1 0 (-15,64) 1 android_1 226114725 1 1.0.12 2001 2 1 1 å°å¹´ä¿®ä»ä¼ com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-15,64) 2 android_2 226114725 1 1.0.12 2002 2 2 0 å°å¹´ä¿®ä»ä¼ com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-15,64) 3 android_3 226114725 1 1.0.12 2003 2 2 0 å°å¹´ä¿®ä»ä¼ com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-15,64) @@ -81,10 +82,13 @@ 78 djx_28 226114725 1 1.0.12 2128 4 2 0 æåä» com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-9.5,-286) 79 djx_29 226114725 1 1.0.12 2129 4 2 0 æåä» com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-9.5,-286) 80 djx_30 226114725 1 1.0.12 2130 4 2 0 æåä» com.shandangceshi.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-9.5,-286) 81 lxj 508021130 1 1.0.15 2201 0 1 1 çµä»è®° com.zyxhgame.game007 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 7F7BWLXKZR 0 0 (26,139) 81 lxj_ios 508021130 1 1.0.15 2201 0 1 1 çµä»è®° com.zyxhgame.game007 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 7F7BWLXKZR 0 0 (26,139) 82 snqxz_1 424064855 1 1.0.15 2301 1 1 1 å°å¹´å¥ä¾ ä¼ com.zyxhgame.game003 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 5X26T385YZ 0 0 (-15,64) 83 lxj 813015059 1 1.0.15 2401 0 1 1 çµä»è®° com.zyxhgame.game007 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (26,139) 84 sgsbl_android 815035927 1 1.0.15 2501 0 1 1 ä¸å¤æå®å½ com.zyxhgame.game005 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (40,94) 83 lxj_android 813015059 1 1.0.15 2401 0 1 1 çµä»è®° com.ziyouyouxi07.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (26,139) 84 sgsbl_android 815035927 1 1.0.15 2501 0 1 1 ä¸å¤æå®å½ com.ziyouyouxi05.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (40,94) 85 sgsbl_ios 815035853 1 1.0.15 2601 0 1 1 ä¸å¤æå®å½ com.zyxhgame.game005 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (40,94) 996 android_20 822055139 1 1.0.16 2020 999 0 1 å°å¹´ä¿®ä»ä¼ com.ziyouyouxi01.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-15,64) 997 android_20 822055139 1 1.0.15 2020 999 1 1 å°å¹´ä¿®ä»ä¼ com.ziyouyouxi01.snxxz shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (-15,64) 998 snqxz_1 424064855 1 1.0.15 2301 999 1 1 å°å¹´å¥ä¾ ä¼ com.zyxhgame.game003 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 5X26T385YZ 0 0 (-15,64) 999 lxj 813015059 1 1.0.15 2050 999 1 1 çµä»è®° com.zyxhgame.game007 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (26,139) 1000 lxj 813015059 1 1.0.16 2050 999 1 1 çµä»è®° com.zyxhgame.game007 shandangceshi shandangceshi2018 shandangceshi shandangceshi2018 0 0 (26,139) Assets/Editor/XCodeProjectMod.cs
@@ -232,16 +232,8 @@ public static void BuildIOSProject_Replace() { string _buildPath = GetBuildPath(); UnityEngine.Debug.Log(_buildPath); if (string.IsNullOrEmpty(_buildPath)) { return; } s_IsAppend = false; BuildPipeline.BuildPlayer(ClientPackage.baseLevels, _buildPath, BuildTarget.iOS, BuildOptions.Il2CPP); BuildPipeline.BuildPlayer(ClientPackage.baseLevels, GetBuildPath(), BuildTarget.iOS, BuildOptions.Il2CPP); } #if UNITY_IOS Assets/Hooks.metacopy from Assets/Plugins/iOS/ADPuttingSDK.meta copy to Assets/Hooks.meta
File was copied from Assets/Plugins/iOS/ADPuttingSDK.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: d95a6f9c81c59ab4eaa7ad232b61ae63 guid: a14b3ab197b29d340a72c330e55e45ca folderAsset: yes timeCreated: 1529652239 timeCreated: 1535439805 licenseType: Pro DefaultImporter: userData: Assets/Plugins/iOS/ReYunTracking/ReYunTracking.aold mode 100644 new mode 100755 Binary files differ
Assets/Plugins/iOS/ReYunTracking/Tracking.hold mode 100644 new mode 100755
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a4cb30bb508b4a941b5efb839cc13b1d timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: be0c1f3c3571594468b99c9731377a31 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ed8645f71a4b01b4b97caa3fede2247b timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/4xd-0e-BFC-view-FRz-JV-RKy~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5096ab8a15abc344d9c1f196456074d5 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b6c98c6df4ef1e84aba0ac71f49500b5 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d50605d7c18cfed44af776a37efbb86a timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 641ce307e28b3b8419ac755bef08184f timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/7Rn-Zm-LJA-view-elg-Jn-SLG~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 527037932a00edc4d842a55694001cc5 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7d10c1f10331ad5499deffa27208e357 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 43a84e97377ee464787c72b2018fd51c timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3f96ce26172cb12419b9f2dcb1978352 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/89r-e3-AAs-view-Oiu-fX-I9f~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ef12f63793450294899d470660363081 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 92637db82c7f1934e91acd6a98c49574 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: cc32271f55902cb4fa48f8fa2650a427 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 554f4d8236e48b24bad0bce69aeedd67 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/C8B-3V-BRw-view-ihY-Fv-8uO~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 92e7f0f4955b67146a02e81308e8f5b7 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 166caaadeaf377a4aa9b4161add05f14 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e302a9ddae68b6c41ad525c4d0a2a0bc timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6755a6c93315ec146abaa1a09c94ea4d timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/CYA-O7-AwC-view-Vok-os-L9H~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 4434bd614e4490c4585140bf6ac24c1d timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 892b19aadc1ced44b9db613ca6ceb7df timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b42e656eb71b3aa458c080c3072404cc timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d916d516419ac4c4b8a70f7d6f08f2ae timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/DPn-Jy-Pla-view-TyI-ms-SIl~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8567348ac8b89c949acaefe840b1e7ba timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d1127ff2cb414b04f9b4afb6fc910b81 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c58574bca9374ed4c9b184c5ccfd42e9 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c4bf0bca5eb06de41884e3f67345b687 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Dfc-ns-OVu-view-21t-Dh-716~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: baa8248a78da38545872e1c0078b67ad timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3e10e22a9548ae947bd7b9705616fd09 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5be483c6118a73b4e9135d647068d8db timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: f42d660133af3594fb7dfb88c3ffd2be timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/HZb-YB-YLl-view-398-dv-wkP~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2b32a9c3571f3e647bd77b377e295f73 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b56741b9abb96c64fa8465b3e79ba048 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 679cab85cbd3a604e935e13903b796b3 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 91e8ada6ad58e6a41ae5c0e31dff1361 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Naf-Q2-wA2-view-HlW-OE-LRz~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5d6bf361309d78c4d94469f99bd9af56 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: f08c72a217a235c4ca46a3a21e003a92 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b945610f8cdff6148bc83a4502ffb18d timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ef23eb4993869c44e86db67052d80154 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/Ndt-bN-4Ly-view-nrl-yj-JRz~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: f14b4cebde281b347a2f62ce1e714c51 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: b964d842bd27b3f49b9fea33a8dc0aeb folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 0ec3e023102dd0649ae66a2666f92ad9 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~ipad.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 5d8bb8d6340c905429e7bbf609f84b4e timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: b8fdfe060405adb42ad96c9ce084fa0f folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 779010d186ff05243805ad18872ab68d timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/P19-wh-dDg-view-m4t-Tj-RVU~iphone.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: b7d9e0b635db16b4b89915ea55e93e4a timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e04e1bac88d11a949b0cf9d0d3671e10 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6b43f78c40b093f428662a7a171bed3f timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ae9743a4cd8830c4381e960e02b879a8 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/RLT-Jl-Bju-view-loD-Se-wmK~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 88c9aaebb2d8ad14eb6e9f34648164aa timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a6254e2750756db4b9e8b7c69fecf502 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 22eaa4ab26557ea45b827954b284b069 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: aaa972e0b44a0814381d8e7e65737fba timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-0QS-E5-kzT~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 64d33d5ae5e77504387a78a1416ac7ca timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6abc407dd1e11be4e8dfc93c81fd4ba8 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d1d46e36785b81b42a7f12428606754d timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ad9efa0007d4f6a42a473b56998222e8 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-KIT-8V-xja~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2631d22a3fc5e554a88b952163c7d778 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 769c64eb641fcc4418293833f0ff3ee5 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a10fb96ce7b1fe6409ef147f3792f728 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a8d8929fd2afad04ab70dd4cc4550d8e timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-f6n-xh-tRi~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7ec42f188cab89646a55878af45ef0c5 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5d21594096348834e841a143c75f7bcd timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2d6a1b3a2c2b14943a9e4309b3b51720 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ece0584645aa4004a97a0885126c73e7 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-pGH-TL-bPk~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ee278adc75b028c45b0c40f5532710f5 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 78b3c4c7c12304246b7058946b84aa2d timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ef065216e213ff54db5d9615aa6e59c7 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c639df7716d1ecf44994c8cc7c0baffb timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UINavigationController-yW5-1Z-Oc3~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8064636d5c8564a4ab9d570cfb7f1856 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e69f060d8dd49024ab0fe6720d638177 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: cedcd68e23a6481419c4bd5638729326 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3a74a106c81b8064fad0b648704e64a6 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-CYA-O7-AwC~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8e1851b9549c31744aac60c9bd84a03f timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3c7eaec7ac1949540aaf5f51f9af4a69 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 93d619e4afe92654d84382cac8728afb timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d4fa985fb4f3f9f45a833f94f56fb878 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-RLT-Jl-Bju~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d55c6b7ce0fe92848a2411bf7615c1fe timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7eee7aa6b1f114a47a9d683ff8823ea5 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 194f5b94b4bfb0d46ba0e832aa7d938c timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 0ff13618681fa474091ebcb02d37eba2 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-eTH-Th-dLP~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 04bfa02b1e1ad36478686f6a7fdaf893 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 61102c3b8db2bf448a2211daa54782f7 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9a779355c22b6d14b94b4259d8999381 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 73ad6b4d7fc8f9a48ada0d724dcc99c8 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-jJ5-Hf-6Hd~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 20353cd55b4667447a336c41f8bf5660 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7c9d0bdbd68de6346a61c654eaff97dc timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 15fdb64a6761b2c4480b4162605fc589 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b9cd855990e07ad4bac6d89da6631eb2 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-qbu-T7-7Mg~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: dd8c5348c8e4c614babc0d718b67aa5c timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8da42a74d24fadd448769e4f4d8b9a38 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: fe2e1938ac3c6f149bc79b16f6caa2b1 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 82e863b984804494caa453ff908dd5b5 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/UIViewController-xdp-2t-t3b~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 03eb8cc9d0c7fc843a6efa79c1937419 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 1d1e7ec7ebe2d4349b8c445998333eb3 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 823e8d3b00b893443b890b6336b24c31 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: cbd0b73dbf9cf2149ba60018276c1eca timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLAlertContainerViewController~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6a92855bb1204f049b8d9a020d71b882 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a21b37b7fc89914439727a285bb49866 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: de30ee27296c509418b75c010c376ca7 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ad515a5664e906741896ffbabd0bf3f1 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLCertificationContainer~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 25b611af31c0fde4a967bac476f7230e timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3cbe47398fe7a3146b4d24436c5ebaa6 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 218ca315fa347f249a48a3b4dce1e073 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: f0762ff365268f645b4a37f49eec8c88 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLLoginViewController~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2855ed1a839e8ef45ad2786bc22825d4 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6d7e1fae3a53d704f9077b14be8f7f18 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9c9c16f578091ae4ebe82e4d04eebe4a timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 63f295f094b729449af2cd9943603bfc timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginVerifyCodeViewController~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 69e4cadfb6bae104596ce3487099b7a7 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 71e049ebbd1ee05439008fd64dd9c712 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: fe2cc23bc80ea7a4fb3835a9333853c8 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9fd59886012794943bfdc56b12a69214 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLPhoneLoginViewController~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 4bd65a217359ce5449c1ae56f99a1262 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: b2e760638f8fc01499aa875aca37c539 folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: ae92c34680d72164186bbe7d5ec8fb45 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~ipad.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 51e754b4a9052da42b6b9ea862bd8fb0 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: 8ae67c11613b34f48aa559720639145b folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 881952d4bb7bbf543a31d6627045bd8f timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/YLQuickRegisterSuccessViewController~iphone.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 49fa836d7d93d754cba5a8b1def9956a timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6eb89d44e84c54842afb03fdb31eaeaa timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7545ad89ecfb94b4393d06e6b6a666f6 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ce32d63d951780e48b124bda538a6bf9 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/ZgU-SP-UhS-view-91T-Kv-6eH~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 4236c37143dec1748985463f45d61f68 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9de931c42203fe944892020a6487c002 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a7a2b50d26b80cc4cb60a88fd094e04e timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 80cef26e923a8f74dad983f85e075627 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/bindPhoneMainContainer~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 1772edf7790c9e848ae53957611553ba timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: cd8db8a91b3275947a116056d9dfce58 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2014cf8b4e8e2f147a2ad68988f0856e timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 46664ea4641e6d04c8577bb03b6837c4 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/contactServerMainContainer~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 92ae6308e6f206143b184df062c97862 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d817420281efce4468f210dbcf737374 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 72e17ffe9a3ca53439f99e31032d8ad5 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: fa17450917e40d54d8a044c032e7eaa8 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/eTH-Th-dLP-view-RB3-6W-JDH~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c7c23cd4b709fc947bd6034cff76cae6 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 3f9e5ed56f0bbdd4294f17f026a65f84 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c106d91b56a87df49b6cb226613e2804 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 6d1473f9d2f7b4142bd6ea1be6aab8b0 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/fqB-o3-9KU-view-Tmh-H2-Mg8~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 72d60df911038f142ba6bd38f2a4bb05 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: 946ae2c61405d894097d13da7150781a folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 1fcb3113eb97121439f77267ec675d9d timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~ipad.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 0fbebe5737e71064ab9df3e88f95fd3b timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib.metacopy from Assets/Editor/Logo/lxj.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib.meta
File was copied from Assets/Editor/Logo/lxj.meta @@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 01e005808a839ab41a7de35f6d789e60 guid: ccc69feeee6409c449f455856ab25dd7 folderAsset: yes timeCreated: 1533884522 timeCreated: 1535003964 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib/objects-8.0+.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 7ce09a96e7c751644be291b6530d34c5 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/hqJ-Ks-izE-view-rqm-XZ-ob8~iphone.nib/runtime.nib.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: 8192c4838c015524ebaeaa50da622104 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: assetBundleName: assetBundleVariant: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c68dc7386742f6046b20ff5764ca21a6 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a36b1a25ca65a9c45bc715e4f0dc3f3e timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d2f376271fdf74c49baab6e8b64d65a0 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/jJ5-Hf-6Hd-view-sh9-a1-2fi~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7beefe3125825ed4abe7d72df79cf207 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ee211b62016cd9f4384d6a1b4b560a2e timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ef217b1319abfd54da533ba3230ea0ed timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8efa3db659e57b744842d4b52f7a17b7 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/mainContainer~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2b6690ae8de66c048b47ca21d700f4c4 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e2a8059726a479b43bdee02136a4999f timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 46518bf73ecb25e418005ab48fc0fa3f timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e86b1f140ae306e46854fdaea9454cda timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/n11-jh-KZc-view-7Ed-8w-tI2~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e63e3beeb8f4ef7439369ad08bf98838 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 42b8d241122dc8b4ab68b07798776ef2 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 65eb08fd3ee48cc49bc4f096ba8383fb timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9b600cbd6aeba4145bd2a7f1bd440401 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/payController~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 837946fb6c774a44bbaa1f89f7343e12 timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 609e4472a8c9a15468b74f5657b25f5c timeCreated: 1529981711 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d78f41ff7b3c3de4099dccfc88b395cb timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 359fc4b1283360d4195cb5955b1df8e9 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/qbu-T7-7Mg-view-rI3-8Q-U90~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ab4d5aeead425f34381049be96e6cb1b timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 97f813d11af361b4d9e2002ff1663ca2 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9674e16cd6caeca4c8f4ac3cf0b4dc72 timeCreated: 1529981711 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 365a7964b8290114781f153cc3e118b1 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/tsg-CM-ex4-view-Hl7-7e-hAu~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5059af6668434e34d91a1d29315b0fbc timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~ipad.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~ipad.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ea3c1999dab6da1428c5e9b0ab1892a9 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~ipad.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~ipad.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c50a963864bd2b7468ef021a8cd0dda0 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~iphone.nib/objects-8.0+.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~iphone.nib/objects-8.0+.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 0a179be72659b444bb8603cbc4f3556d timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~iphone.nib/runtime.nibBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry.storyboardc/xdp-2t-t3b-view-ZgZ-9O-ghV~iphone.nib/runtime.nib.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e85288fa3bc9d0748b2ed9864cb595d1 timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~ipad.storyboardc/Info-8.0+.plistBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~ipad.storyboardc/Info-8.0+.plist.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: cb1910969a9918f408f3b6da5048ac9d timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~ipad.storyboardc/Info.plistBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~ipad.storyboardc/Info.plist.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8f14bbaa0bc1b3c48bf760f8d4cba90d timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~iphone.storyboardc/Info-8.0+.plistBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~iphone.storyboardc/Info-8.0+.plist.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: be566c88032552e43bb68387f38d4c02 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~iphone.storyboardc/Info.plistBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Entry~iphone.storyboardc/Info.plist.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d903fbed933296c4988240480cdf9035 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Info.plistBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Info.plist.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: be1292ad9540b2840a34a48277d6e6ee timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/bind_tip.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: bc56cd6e01e13e74593e36957ba7f8d8 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/bind_tip_landscapeLeft.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 0809b2fa1a6e340459f885e1a23fa54a timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/bind_tip_landscapeRight.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 4ec89b61883121d4ab269a718998846e timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/close@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 48159b245c1c3fb44a37e7266169cc31 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/douwan@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d462d0e1b17ac5b4c9f1edec4252103c timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/duwankuang@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: fa35d34e9759d9b4191be20ca2909076 timeCreated: 1529981714 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/eye_close@3x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 048e7ad816e939b40ad12d52006a1c46 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/eye_open@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 4a25b2bdde9f4ed4cac0ef88b5f5bc2a timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_account_login_btn.png
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_account_login_btn.png.meta
File was renamed from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e792f5c0b63fe3c42a37c771ef18b4b9 timeCreated: 1529981713 guid: b561e4fcf29819448a7967adde700d0a timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_phone_login_btn.png
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_phone_login_btn.png.metacopy from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_phone_login_btn.png.meta
File was copied from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e792f5c0b63fe3c42a37c771ef18b4b9 timeCreated: 1529981713 guid: 399666c382976434a99a0ac37d96bd2f timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_register_success_status.png
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_register_success_status.png.metacopy from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ic_register_success_status.png.meta
File was copied from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e792f5c0b63fe3c42a37c771ef18b4b9 timeCreated: 1529981713 guid: 8f6c12f90fc3d9248a7b350ceaabaa73 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.pngBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_agree_license_agreement_no.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5bad916d0510a2c40b90e1dcf778e474 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_agree_license_agreement_yes.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 85f8775c1a207ba46a6260dca09a2030 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_navigation_enterprise_logo.pngAssets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_navigation_enterprise_logo.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a122b6becf4391e429ec8baffca1c5be timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/l10n.stringsBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/l10n.strings.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9498e15c734b74c478ae14c099cc1fc3 timeCreated: 1529981710 timeCreated: 1535336253 licenseType: Free DefaultImporter: userData: Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/loading.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 74f97866cca721146a91fe800d78fae9 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/navReturn.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: ec02b3f7fa6155a428fb85e9bf3fd632 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/popTableBtn@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: bd30b87fc4da71841b0e33d88ef870ae timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/qq1_03@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b947efd83aa5e2c4c9c9e0890a162fd4 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/qq@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: c4d5415e56e71c647a303f059241b749 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/qqkuang@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d8cc4d7ae47d7d740b8af000ccd9bb86 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/sina1_03@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 9125afb0218f35248ad209ae767d1883 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/textFieldBorder.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b1882def97f215649b45e5e34df40b36 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/textFieldBorderGray.png
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/textFieldBorderGray.png.metacopy from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta copy to Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/textFieldBorderGray.png.meta
File was copied from Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/icon_account_login_btn_bg.png.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: e792f5c0b63fe3c42a37c771ef18b4b9 timeCreated: 1529981713 guid: f5ae115c6cd40b34dbd8e129afb5b962 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/wechat1_03@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 7e4be8548d9b1bb42ae42d39608023d9 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/weixin@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5157f5029473bd34f9bbb2256ce4abb8 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/weixinkuang@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b44ee01bbb613824284ae70f88e0c226 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/yile_logo@2x.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: bb7367ff3d299f84894a3e4152204bc2 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Çл»Õ˺Å.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 2b6939c190e445348aa05d57f338db57 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/Éý¼¶Õ˺Å.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 857bc0dea88a7f64faef98734fd229f8 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/ÁªÏµ¿Í·þ.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: a6f536c0892d0fa4e931a5336e1eae48 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶ÁÍêÕ˺ŵǼ.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 23271cbfdc62ad947a2850212e91f48d timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÁÙʱÏûÏ¢.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: d311d75cd152d664eab4ca519ebb58ae timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÊµÃûÈÏÖ¤.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 01f3f6d8d86c36044a01cebf47b828de timeCreated: 1529981712 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÃÜÂëÕÒ»Ø.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 8e7783c7b692a3145ac36f4ca73a78e9 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÊÖ»ú×¢²á.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 97489639a571f6b43bf3cf7b485aa197 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÊÖ»ú°ó¶¨.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: abf3307e3b617084c9efe4fab9126803 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÆÕͨע²á.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: f434b89f8392e5146bfd7ee769143052 timeCreated: 1529981713 timeCreated: 1535336257 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÓû§ÐÒé.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: 5fcef0c4cc0f67641a9271652fb02cc1 timeCreated: 1529981713 timeCreated: 1535336254 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/FreeSDKResource.bundle/¶¼ÍæÁªÏµ¿Í·þ.png.meta
@@ -1,6 +1,6 @@ fileFormatVersion: 2 guid: b0a1a159781add34e90bcd33fe841182 timeCreated: 1529981713 timeCreated: 1535336256 licenseType: Free TextureImporter: fileIDToRecycleName: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/FreeSDK.h
@@ -20,7 +20,10 @@ YLSDKTypePayFailed=4, }YLSDKType; // Release #define YL_API_ENTRY @"http://zysdk.zytxgame.com/api.php/Index/getUrl" // Debug //#define YL_API_ENTRY @"http://111.230.244.198/api.php/Index/getUrl" //æ¯å¦å¨å个æä½æ§è¡/宿æ¶å¨å±å¹ä¸å¼¹åºæç¤ºæåï¼ä¾å¦ï¼è´¦å·å·²éåº #define YL_SHOW_ACTION_TIPS YES Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/FreeSDK.h.meta
@@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 26448caa0697e6241ab44393d6dc43f9 timeCreated: 1526551240 licenseType: Pro timeCreated: 1535003972 licenseType: Free PluginImporter: serializedVersion: 2 iconMap: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/MonkeyFruitConstant.h.meta
@@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 073036ce80e835846b5be1f186ed5667 timeCreated: 1526551240 licenseType: Pro timeCreated: 1535003972 licenseType: Free PluginImporter: serializedVersion: 2 iconMap: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/YLAccount.h
@@ -42,7 +42,11 @@ //å°å©æ -(DYYFloatWindow *)floatBtn; /// æ¾ç¤ºå°å©æ - (void)showFloatBtn; /// éèå°å©æ -(void)hideFloatBtn; //æ¾ç¤ºç»å®ææºå·é¡µé¢ isLoginæ¯å¦æ¯ç»å½èªå¨å¼¹åº - (void)showBindPhoneView:(BOOL)isLogin; Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/YLAccount.h.meta
@@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: eb741b39ca04b844caa5ce61250e026c timeCreated: 1526551240 licenseType: Pro timeCreated: 1535003972 licenseType: Free PluginImporter: serializedVersion: 2 iconMap: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/include/YLOrder.h.meta
@@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 426fbb0ac7bd1d54a802f37685c7c8ba timeCreated: 1526551240 licenseType: Pro timeCreated: 1535003972 licenseType: Free PluginImporter: serializedVersion: 2 iconMap: {} Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/libFreeSDK.aBinary files differ
Assets/Plugins/iOS/The2thWorldSDK/FreeSDK/libFreeSDK.a.meta
@@ -1,7 +1,7 @@ fileFormatVersion: 2 guid: 09e97a497eb8b8946b68d462bfd44ea2 timeCreated: 1526551240 licenseType: Pro timeCreated: 1535336257 licenseType: Free PluginImporter: serializedVersion: 2 iconMap: {} Assets/Plugins/iOS/The2thWorldSDK/UniversalSDK.h
@@ -49,12 +49,7 @@ #define KIsiPhoneX ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(1125, 2436), [[UIScreen mainScreen] currentMode].size) : NO) static NSString *JPush_AppKey = @"22186239fee975f883198cf4"; static NSString *JPush_Channel = @"Develop"; static BOOL JPush_IsProduction = FALSE; static NSString *FreeSDK_AppID = @"508021130"; static NSString *ADSdk_Token; @interface UniversalSDK : NSObject { UIWebView* m_UIWebView; @@ -63,7 +58,7 @@ -(void) HandleUnityMessage:(NSString*) json; -(void) Init; -(void) FreeSDKInit; -(void) FreeSDKInit:(NSString*)freeSdkAppID; -(void) FreeSDKLoginOK; -(void) FreeSDKCancelLogin; -(id) APNativeJSONObject:(NSData*) data; Assets/Plugins/iOS/The2thWorldSDK/UniversalSDK.mm
@@ -34,6 +34,10 @@ -(void) Init { NSString *_bundlePath = [[NSBundle mainBundle] pathForResource:@"The2thWorldRES.bundle" ofType:nil]; NSString* _configPath = [[NSBundle bundleWithPath:_bundlePath] pathForResource:@"The2thWorldSDKConfig" ofType:@"plist"]; NSMutableDictionary *_configDict = [[NSMutableDictionary alloc] initWithContentsOfFile:_configPath]; UIDevice *_device = [UIDevice currentDevice]; _device.batteryMonitoringEnabled = true; @@ -72,7 +76,7 @@ [self SendMessageToUnity:_dict]; // èªç±sdkåå§å [self FreeSDKInit]; [self FreeSDKInit:_configDict[@"FreeSDK_AppID"]]; // åé个æ¨id [_dict removeAllObjects]; @@ -81,10 +85,14 @@ [self SendMessageToUnity:_dict]; // çäºåå§å [Tracking initWithAppKey:@"3c3724431309474be938e0b64d4ad74f" withChannelId:@"_default_"]; [Tracking initWithAppKey:_configDict[@"TrackingIO_AppKey"] withChannelId:@"_default_"]; // 仿¥å¤´æ¡ [TTTracker startWithAppID:@"151709" channel:@"ios-snqxz" appName:@"å°å¹´å¥ä¾ ä¼ "]; NSDictionary* _infoDictionary = [[NSBundle mainBundle] infoDictionary]; [TTTracker startWithAppID:_configDict[@"TTTrack_AppID"] channel:@"ios-snqxz" appName:[_infoDictionary objectForKey:@"CFBundleDisplayName"]]; // åéåå§å宿 [_dict removeAllObjects]; @@ -103,8 +111,8 @@ } } -(void) FreeSDKInit { [FreeSDK initSDKWithAppId:FreeSDK_AppID withSDKBlock:^(YLSDKType type, NSString *msg) { -(void) FreeSDKInit:(NSString*)freeSdkAppID { [FreeSDK initSDKWithAppId:freeSdkAppID withSDKBlock:^(YLSDKType type, NSString *msg) { NSMutableDictionary *_dict = NULL; switch (type) { case YLSDKTypeInitSuccess: @@ -265,7 +273,12 @@ } -(void)JPushInit:(NSDictionary*)launchOptions { NSLog(@"JPushInit Finished."); NSString *_bundlePath = [[NSBundle mainBundle] pathForResource:@"The2thWorldRES.bundle" ofType:nil]; NSString* _configPath = [[NSBundle bundleWithPath:_bundlePath] pathForResource:@"The2thWorldSDKConfig" ofType:@"plist"]; NSMutableDictionary *_configDict = [[NSMutableDictionary alloc] initWithContentsOfFile:_configPath]; JPUSHRegisterEntity *_entity = [[JPUSHRegisterEntity alloc] init]; _entity.types = JPAuthorizationOptionAlert | JPAuthorizationOptionBadge | JPAuthorizationOptionSound; if([[UIDevice currentDevice].systemVersion floatValue] > 8.0){ @@ -274,8 +287,8 @@ [JPUSHService registerForRemoteNotificationConfig:_entity delegate:self]; [JPUSHService setupWithOption:launchOptions appKey:JPush_AppKey channel:JPush_Channel appKey:_configDict[@"JPush_AppKey"] channel:@"develop" apsForProduction:JPush_IsProduction advertisingIdentifier:nil]; } @@ -346,7 +359,13 @@ [UIPasteboard generalPasteboard].string = _dict[@"content"]; break; case U2S_FreePlatformInit: [self FreeSDKInit]; { NSString *_bundlePath = [[NSBundle mainBundle] pathForResource:@"The2thWorldRES.bundle" ofType:nil]; NSString* _configPath = [[NSBundle bundleWithPath:_bundlePath] pathForResource:@"The2thWorldSDKConfig" ofType:@"plist"]; NSMutableDictionary *_configDict = [[NSMutableDictionary alloc] initWithContentsOfFile:_configPath]; [self FreeSDKInit:_configDict[@"FreeSDK_AppID"]]; } break; case U2S_MakeKeyAndVisible: { Assets/Resources/Config/PriorLanguage.txt
@@ -13,14 +13,14 @@ 10 ä¸è½½å¤±è´¥ï¼æ¯å¦éæ°ä¸è½½ï¼ 11 éè¦ä¸è½½{0}个æä»¶ï¼å ±è®¡{1}KBï¼æ¯å¦å¼å§ä¸è½½ï¼(æ¬æ¬¡æ´æ°ä¸å å«éè¦è¡¥ä¸ï¼æ¸¸æå°éæ°å è½½ï¼) 12 éè¦ä¸è½½{0}个æä»¶ï¼å ±è®¡{1}KBï¼æ¯å¦å¼å§ä¸è½½ï¼ 13 æ£å¨ä¸è½½èµæºä¸ï¼{0}ï¼ 13 ä¸è½½èµæºä¸ï¼{0}ï¼ 14 åå§åèµæºï¼ä¸èæµéï¼ 15 æ ¡éªçæ¬ 16 èµæºæ£æµ 17 è¿å ¥æ¸¸æ 18 æ¨èæ 19 ç»§ç»ä½éªæ°çå 容éè¦ä¸è½½èµæºæ©å±å ï¼ä¸è½½å°æ¶è{0}MBçæµé</r>ï¼WIFIç¯å¢ä¸èªå¨ä¸è½½ï¼ 20 ç»§ç»ä½éªæ°çå 容éè¦ä¸è½½èµæºæ©å±å ï¼ä¸è½½å°æ¶è{0}KBçæµé</r>ï¼WIFIç¯å¢ä¸èªå¨ä¸è½½ï¼ 19 ç»§ç»ä½éªæ°çå 容éè¦ä¸è½½{0}MBèµæºæ©å±å ï¼WIFIç¯å¢ä¸èªå¨ä¸è½½ï¼ 20 ç»§ç»ä½éªæ°çå 容éè¦ä¸è½½{0}KBèµæºæ©å±å ï¼WIFIç¯å¢ä¸èªå¨ä¸è½½ï¼ 21 ä¸è½½æåä¸â¦ 22 23 Assets/Resources/ScriptableObject/Config/WindowConfig.asset
@@ -46,8 +46,8 @@ window: ComposeWingsWin - order: 1 window: ComposeTicketWin - order: 2 window: - order: 5 window: ComposeDogzEquipWin - order: 3 window: ComposeEquipWin - order: 4 @@ -146,8 +146,16 @@ window: VipWin - order: 2 window: VipInvestWin - parent: HappyXBWin orderTables: - order: 0 window: BestXBWin - order: 1 window: RuneXBWin - order: 2 window: XBStoreWin - order: 3 window: FairyJadeInvestmentWin window: XBWarehouseWin childWindows: - WorldBossWin - BossHomeWin Hooks/commit-msg
New file @@ -0,0 +1,12 @@ #!/bin/sh # -*- coding: UTF-8 -*- if [ "$(grep -in '^[0-9]*[1-9][0-9]* .*' "$1")" == "" ] && [ "$(grep -in '^Merge .*' "$1")" == "" ] && [ "$(grep -in '^Revert .*' "$1")" == "" ]; then echo 以ä¸3ç§æ¯æ£ç¡®ç夿³¨ä¿¡æ¯æ¯ï¼ echo 1. 12345 æ£å¸¸æäº¤å¤æ³¨ä¿¡æ¯å¿ 须以æ°ååå·å¼å¤´ã#æ°ååå·åé¢å¸¦ç©ºæ ¼# echo 2. Merge 以Mergeå¼å¤´è¯´æè¿æ¯ä¸æ¬¡gitåå¹¶æä½ï¼è¿æ¯è¢«å 许çã#Mergeåé¢å¸¦ç©ºæ ¼# echo 3. Revert 以Revertå¼å¤´è¯´æè¿æ¯ä¸æ¬¡gitè¿åæä½ï¼è¿æ¯è¢«å 许çã#Revertåé¢å¸¦ç©ºæ ¼# exit 1 fi Hooks/commit-msg.meta
New file @@ -0,0 +1,8 @@ fileFormatVersion: 2 guid: b87aef1931a05ca49890a8fc42649dfb timeCreated: 1535439812 licenseType: Pro DefaultImporter: userData: assetBundleName: assetBundleVariant: ProjectSettings/QualitySettings.asset
@@ -4,7 +4,7 @@ QualitySettings: m_ObjectHideFlags: 0 serializedVersion: 5 m_CurrentQuality: 1 m_CurrentQuality: 2 m_QualitySettings: - serializedVersion: 2 name: Fast @@ -18,14 +18,14 @@ shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 2 textureQuality: 0 textureQuality: 1 anisotropicTextures: 0 antiAliasing: 0 softParticles: 0 softVegetation: 0 realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 2 vSyncCount: 0 lodBias: 0.4 maximumLODLevel: 0 particleRaycastBudget: 16 @@ -44,14 +44,14 @@ shadowCascade2Split: 0.33333334 shadowCascade4Split: {x: 0.06666667, y: 0.2, z: 0.46666667} blendWeights: 2 textureQuality: 0 anisotropicTextures: 1 textureQuality: 1 anisotropicTextures: 0 antiAliasing: 0 softParticles: 0 softVegetation: 0 realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 2 vSyncCount: 0 lodBias: 0.7 maximumLODLevel: 0 particleRaycastBudget: 64 @@ -77,7 +77,7 @@ softVegetation: 1 realtimeReflectionProbes: 0 billboardsFaceCameraPosition: 0 vSyncCount: 2 vSyncCount: 0 lodBias: 1 maximumLODLevel: 0 particleRaycastBudget: 34