Commit 34c4db90 authored by Mazy's avatar Mazy

fix paizi bugs

parent 3cf191bf
......@@ -1003,7 +1003,7 @@
CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 110;
CURRENT_PROJECT_VERSION = 103;
DEVELOPMENT_TEAM = XWMRLLSSFL;
ENABLE_BITCODE = NO;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
......@@ -1035,7 +1035,7 @@
CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 110;
CURRENT_PROJECT_VERSION = 103;
DEVELOPMENT_TEAM = XWMRLLSSFL;
ENABLE_BITCODE = NO;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
......
......@@ -13,6 +13,7 @@ NS_ASSUME_NONNULL_BEGIN
+(GYCashSixAwardAlertView *)loadFromNib;
@property (weak, nonatomic) IBOutlet UIImageView *centerImageView;
@property (weak, nonatomic) IBOutlet UILabel *mainTitleLabel;
@property (weak, nonatomic) IBOutlet UIButton *cancelButton;
......
......@@ -57,12 +57,15 @@
[self.commitButton setBackgroundImage:[UIImage imageNamed:@"alert_six_cash_btn_bg"] forState:UIControlStateNormal];
[self.commitButton setImage:[UIImage imageNamed:@"alert_six_cash_play_btn_bg"] forState:UIControlStateNormal];
[self.commitButton setTitle:@" 领6倍奖励" forState:UIControlStateNormal];
self.centerImageView.image = [UIImage imageNamed:@"toast_double_cash_icon"];
} else {
self.gainAmountLeftLabel.hidden = false;
self.mainTitleLabel.text = @"获得翻倍奖励";
[self.commitButton setBackgroundImage:[UIImage imageNamed:@"gift_confirm"] forState:UIControlStateNormal];
[self.commitButton setImage:nil forState:UIControlStateNormal];
[self.commitButton setTitle:@"开心收下" forState:UIControlStateNormal];
self.centerImageView.image = [UIImage imageNamed:@"toast_double_red_icon"];
}
[toView addSubview:self];
......
......@@ -117,6 +117,7 @@
<connections>
<outlet property="adContentView" destination="VdM-km-MHW" id="Rhe-vZ-pJD"/>
<outlet property="cancelButton" destination="HYO-Ph-Ebm" id="sZH-rX-m98"/>
<outlet property="centerImageView" destination="p9y-5L-dzc" id="LQH-MG-KTd"/>
<outlet property="commitButton" destination="Ylj-kZ-eAE" id="9gt-NL-B7v"/>
<outlet property="gainAmountLabel" destination="MRv-Ar-Cpc" id="bkx-7x-Mq6"/>
<outlet property="gainAmountLeftLabel" destination="zxy-Fc-ho1" id="mbb-1c-bsz"/>
......
......@@ -553,25 +553,25 @@ NSDictionary* appLaunchOpts;
// 拆红包
- (void)ios_adRedPackPlan {
// open_plant_box
[[CGNetworkTools shared] postWithAction:open_plant_box parameters:@{} success:^(id _Nonnull response) {
if ([[response objectForKey:@"status"] integerValue] == 200) {
NSDictionary *result = [[response objectForKey:@"result"] objectForKey:@"data"];
GYOpenBoxModel * sModel = [GYOpenBoxModel new];
sModel.type = [[result objectForKey:@"type"] integerValue];
sModel.awardNum = [[result objectForKey:@"awardNum"] integerValue];
WEAKSELF
[[IOSADManager shareADManager] showADType:ADType_Video resultBlock:^(BOOL success) {
if (success) {
[[CGNetworkTools shared] postWithAction:open_plant_box parameters:@{} success:^(id _Nonnull response) {
if ([[response objectForKey:@"status"] integerValue] == 200) {
NSDictionary *result = [[response objectForKey:@"result"] objectForKey:@"data"];
NSString *awardNumber = [[result objectForKey:@"awardNum"] stringValue];
GYCashSixAwardAlertView *alertVC = [GYCashSixAwardAlertView loadFromNib];
[alertVC showAlertToView:[[weakSelf ufw] appController].window amount:awardNumber firstShow: false];
[weakSelf ios_getHomeInfo];
}
} failure:^(NSError * _Nonnull error) {
GYGiftAlertView * gift = [[NSBundle mainBundle] loadNibNamed:NSStringFromClass([GYGiftAlertView class]) owner:self options:nil].firstObject;
gift.boxModel = sModel;
gift.frame = [[self ufw] appController].window.bounds;
[[[self ufw] appController].window addSubview:gift];
[gift show:nil];
}
} failure:^(NSError * _Nonnull error) {
}];
}];
}
}];
}
// 收红包
......@@ -599,39 +599,16 @@ NSDictionary* appLaunchOpts;
WEAKSELF
alertVC.closeCallBack = ^(bool result) {
if (result) {
// 播放视频
[[IOSADManager shareADManager] showADType:ADType_Video resultBlock:^(BOOL success) {
if (success) {
[[CGNetworkTools shared] postWithAction:awardMultiple parameters:@{@"sid": sid} success:^(id _Nonnull response) {
if ([[response objectForKey:@"status"] integerValue] == 200) {
NSDictionary *result = [[response objectForKey:@"result"] objectForKey:@"data"];
NSArray *rewardContentList = [result objectForKey:@"rewardContentList"];
if (rewardContentList.count <= 0) {
return;
}
NSString *totalRewardNum = [[rewardContentList.firstObject objectForKey:@"totalRewardNum"] stringValue];
GYCashSixAwardAlertView *alertVC = [GYCashSixAwardAlertView loadFromNib];
[alertVC showAlertToView:[[self ufw] appController].window amount:totalRewardNum firstShow: false];
[self ios_getHomeInfo];
[self ios_onGetRedPackList];
}
} failure:^(NSError * _Nonnull error) {
}];
} else {
[MBProgressHUD showError:@"抱歉, 请重试"];
}
}];
[self gainMultipleAward: sid];
} else {
// 取消播放领取
[[CGNetworkTools shared] postWithAction: adForcePost parameters:@{} success:^(id _Nonnull response) {
NSDictionary *data = [[response objectForKey:@"result"] objectForKey:@"data"];
NSLog(@"取消播放领取 adForcePost = %@", data);
NSInteger result = [[data objectForKey:@"force"] integerValue];
if (result == 1) {
[weakSelf gainMultipleAward: sid];
}
} failure:^(NSError * _Nonnull error) {
}];
......@@ -640,6 +617,38 @@ NSDictionary* appLaunchOpts;
}
// 领取加倍红包
- (void)gainMultipleAward: (NSString *)sid {
// 播放视频
WEAKSELF
[[IOSADManager shareADManager] showADType:ADType_Video resultBlock:^(BOOL success) {
if (success) {
[[CGNetworkTools shared] postWithAction:awardMultiple parameters:@{@"sid": sid} success:^(id _Nonnull response) {
if ([[response objectForKey:@"status"] integerValue] == 200) {
NSDictionary *result = [[response objectForKey:@"result"] objectForKey:@"data"];
NSArray *rewardContentList = [result objectForKey:@"rewardContentList"];
if (rewardContentList.count <= 0) {
return;
}
NSString *totalRewardNum = [[rewardContentList.firstObject objectForKey:@"totalRewardNum"] stringValue];
GYCashSixAwardAlertView *alertVC = [GYCashSixAwardAlertView loadFromNib];
[alertVC showAlertToView:[[weakSelf ufw] appController].window amount:totalRewardNum firstShow: false];
[weakSelf ios_getHomeInfo];
[weakSelf ios_onGetRedPackList];
}
} failure:^(NSError * _Nonnull error) {
}];
} else {
[MBProgressHUD showError:@"抱歉, 请重试"];
}
}];
}
// 红包列表
- (void)ios_onGetRedPackList {
[[CGNetworkTools shared] getWithAction: getRedPackList parameters: @{} success:^(id _Nonnull response) {
......
{
"images" : [
{
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "toast_double_cash_icon@2x.png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "toast_double_cash_icon@3x.png",
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
......@@ -27700,7 +27700,7 @@ IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NewFruitControl_onClickLanType_mBFDCE09A
int32_t L_14 = __this->get_clickType_11();
if ((((int32_t)L_14) == ((int32_t)(-1))))
{
goto IL_01a3;
goto IL_019a;
}
}
{
......@@ -27709,7 +27709,7 @@ IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NewFruitControl_onClickLanType_mBFDCE09A
bool L_16 = FruitCodeType_get_getIsShow_mBA808A6AE158CEA145056DB9B020BFAA4ED740FA_inline(L_15, /*hidden argument*/NULL);
if (!L_16)
{
goto IL_01a3;
goto IL_019a;
}
}
{
......@@ -27818,39 +27818,75 @@ IL_0132:
}
IL_0179:
{
// if (clickType != 1)
int32_t L_57 = __this->get_clickType_11();
if ((((int32_t)L_57) == ((int32_t)1)))
{
goto IL_01b7;
}
}
{
// GameObject.Find("Form_land").GetComponent<FarmControl>().onClickUnlockLand(fruit_id, clickType);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_58 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteral3EBDBEC0B30D38662FBDDC885AD4D0E8EF670D46, /*hidden argument*/NULL);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_57 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteral3EBDBEC0B30D38662FBDDC885AD4D0E8EF670D46, /*hidden argument*/NULL);
NullCheck(L_57);
FarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4 * L_58 = GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8(L_57, /*hidden argument*/GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8_RuntimeMethod_var);
int32_t L_59 = __this->get_fruit_id_12();
int32_t L_60 = __this->get_clickType_11();
NullCheck(L_58);
FarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4 * L_59 = GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8(L_58, /*hidden argument*/GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8_RuntimeMethod_var);
int32_t L_60 = __this->get_fruit_id_12();
int32_t L_61 = __this->get_clickType_11();
NullCheck(L_59);
FarmControl_onClickUnlockLand_mABD68AC787A745E3FCF0C2CDF969B28D7A1CBB48(L_59, L_60, L_61, /*hidden argument*/NULL);
FarmControl_onClickUnlockLand_mABD68AC787A745E3FCF0C2CDF969B28D7A1CBB48(L_58, L_59, L_60, /*hidden argument*/NULL);
// }
return;
}
IL_01a3:
IL_019a:
{
// GameObject.Find("Form_land").GetComponent<FarmControl>().getLandList();
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_62 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteral3EBDBEC0B30D38662FBDDC885AD4D0E8EF670D46, /*hidden argument*/NULL);
NullCheck(L_62);
FarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4 * L_63 = GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8(L_62, /*hidden argument*/GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8_RuntimeMethod_var);
// if (clickType == 1)
int32_t L_61 = __this->get_clickType_11();
if ((!(((uint32_t)L_61) == ((uint32_t)1))))
{
goto IL_01fb;
}
}
{
// Debug.Log("clickType" + clickType + "fruit_id" + fruit_id);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_62 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_63 = L_62;
NullCheck(L_63);
FarmControl_getLandList_m4EECA57812FDCE4E2D18DCE8DDC129BF415A88BA(L_63, /*hidden argument*/NULL);
ArrayElementTypeCheck (L_63, _stringLiteral43C491FE784E6475CA46379CDFEEFCBB79D0E6C4);
(L_63)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject *)_stringLiteral43C491FE784E6475CA46379CDFEEFCBB79D0E6C4);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_64 = L_63;
int32_t L_65 = __this->get_clickType_11();
int32_t L_66 = L_65;
RuntimeObject * L_67 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_66);
NullCheck(L_64);
ArrayElementTypeCheck (L_64, L_67);
(L_64)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject *)L_67);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_68 = L_64;
NullCheck(L_68);
ArrayElementTypeCheck (L_68, _stringLiteral6C467912654C818DAA3C493E1AFA591A3072B4FC);
(L_68)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject *)_stringLiteral6C467912654C818DAA3C493E1AFA591A3072B4FC);
ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_69 = L_68;
int32_t L_70 = __this->get_fruit_id_12();
int32_t L_71 = L_70;
RuntimeObject * L_72 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_71);
NullCheck(L_69);
ArrayElementTypeCheck (L_69, L_72);
(L_69)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject *)L_72);
String_t* L_73 = String_Concat_m6F0ED62933448F8B944E52872E1EE86F6705D306(L_69, /*hidden argument*/NULL);
IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var);
Debug_Log_mC26E5AD0D8D156C7FFD173AA15827F69225E9DB8(L_73, /*hidden argument*/NULL);
// GameObject.Find("Form_land").GetComponent<FarmControl>().onClickUnlockLand(fruit_id, 1);
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_74 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteral3EBDBEC0B30D38662FBDDC885AD4D0E8EF670D46, /*hidden argument*/NULL);
NullCheck(L_74);
FarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4 * L_75 = GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8(L_74, /*hidden argument*/GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8_RuntimeMethod_var);
int32_t L_76 = __this->get_fruit_id_12();
NullCheck(L_75);
FarmControl_onClickUnlockLand_mABD68AC787A745E3FCF0C2CDF969B28D7A1CBB48(L_75, L_76, 1, /*hidden argument*/NULL);
// }
return;
}
IL_01b7:
IL_01fb:
{
// GameObject.Find("Form_land").GetComponent<FarmControl>().getLandList();
GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_77 = GameObject_Find_m20157C941F1A9DA0E33E0ACA1324FAA41C2B199B(_stringLiteral3EBDBEC0B30D38662FBDDC885AD4D0E8EF670D46, /*hidden argument*/NULL);
NullCheck(L_77);
FarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4 * L_78 = GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8(L_77, /*hidden argument*/GameObject_GetComponent_TisFarmControl_t231FA3492CFC97C89279A07A1C278AF8A95050C4_mFC077B30C7AFC0F95EF160BE6A014CD35A2A3CB8_RuntimeMethod_var);
NullCheck(L_78);
FarmControl_getLandList_m4EECA57812FDCE4E2D18DCE8DDC129BF415A88BA(L_78, /*hidden argument*/NULL);
// }
return;
}
......@@ -3,167 +3,168 @@
"traceEvents":[
{ "pid": 1, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } },
{ "pid": 1, "tid": 1, "ts": 730.9, "dur": 19122734.4, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 19122.7344, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16352.6, "dur": 19107033.6, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 19107.0336, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 40317.1, "dur": 102865.3, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 102.8653, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 143589.6, "dur": 39170.6, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 39.1706, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 182916.6, "dur": 55544, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 55.544, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 182917.6, "dur": 10333.7, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 10.3337, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 183223.6, "dur": 6733.9, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 6.7339, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 190773.8, "dur": 1058.8, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 1.0588, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 191833.9, "dur": 772.3, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.7723, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 192778.1, "dur": 352.8, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.3528, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 193254.2, "dur": 45206.1, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 45.2061, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 193429.4, "dur": 28268.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 28.2684, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 221800.7, "dur": 1946.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.9464, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 223985.8, "dur": 1894.3, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.8943, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 226312, "dur": 418.9, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.4189, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 227766.4, "dur": 5584, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 5.584, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 233351.4, "dur": 1676.9, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.6769, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 235768.2, "dur": 2081.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 2.0814, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 237850.6, "dur": 609, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.609, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 238714, "dur": 10840.4, "ph": "X", "name": "WriteResources", "args": { "durationMS": 10.8404, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 249754.7, "dur": 27048.3, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 27.0483, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 277510.4, "dur": 252999.1, "ph": "X", "name": "PreProcessStage", "args": { "durationMS": 252.9991, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 531221.4, "dur": 1257.1, "ph": "X", "name": "Debugger Sequence Points", "args": { "durationMS": 1.2571, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 533252, "dur": 1385007.1, "ph": "X", "name": "Generics Collection", "args": { "durationMS": 1385.0071, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 533253.1, "dur": 1356987.5, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 1356.9875, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 534055, "dur": 13483.6, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 13.4836, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 534056, "dur": 12968, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 12.968, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1890249.2, "dur": 27012.2, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 27.0122, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1917264, "dur": 769.6, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 0.7696, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1918260.8, "dur": 1314.7, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.3147, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1920267.2, "dur": 9674201.6, "ph": "X", "name": "AllAssemblyConversion", "args": { "durationMS": 9674.2016, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1920882.8, "dur": 3961957.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3961.9572, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 5882842.4, "dur": 6092.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 6.0924, "detail": "System.Configuration" } },
{ "pid": 1, "tid": 1, "ts": 5888936.4, "dur": 13967.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 13.9672, "detail": "Mono.Security" } },
{ "pid": 1, "tid": 1, "ts": 5902905.2, "dur": 831.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8317, "detail": "System.Xml" } },
{ "pid": 1, "tid": 1, "ts": 5903738.4, "dur": 504702.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 504.7022, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 6408446.4, "dur": 1722.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.7227, "detail": "System.Core" } },
{ "pid": 1, "tid": 1, "ts": 6410170.8, "dur": 17216.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 17.2163, "detail": "UnityEngine.SharedInternalsModule" } },
{ "pid": 1, "tid": 1, "ts": 6427389.6, "dur": 646169.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 646.1694, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 7073563.2, "dur": 6768.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 6.7688, "detail": "UnityEngine.GridModule" } },
{ "pid": 1, "tid": 1, "ts": 7080336, "dur": 1136.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.1368, "detail": "UnityEngine.ImageConversionModule" } },
{ "pid": 1, "tid": 1, "ts": 7081475.2, "dur": 17675.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 17.6752, "detail": "UnityEngine.InputLegacyModule" } },
{ "pid": 1, "tid": 1, "ts": 7099152, "dur": 29791.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 29.7914, "detail": "UnityEngine.Physics2DModule" } },
{ "pid": 1, "tid": 1, "ts": 7128944.8, "dur": 23782.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.7829, "detail": "UnityEngine.TextRenderingModule" } },
{ "pid": 1, "tid": 1, "ts": 7152730.4, "dur": 38384.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 38.3843, "detail": "UnityEngine.UnityWebRequestModule" } },
{ "pid": 1, "tid": 1, "ts": 7191117.6, "dur": 92233.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 92.2334, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 7283354.4, "dur": 29333.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 29.3337, "detail": "UnityEngine.AnimationModule" } },
{ "pid": 1, "tid": 1, "ts": 7312689.6, "dur": 14865.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 14.8651, "detail": "UnityEngine.AudioModule" } },
{ "pid": 1, "tid": 1, "ts": 7327556.8, "dur": 58690, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 58.69, "detail": "UnityEngine.GameCenterModule" } },
{ "pid": 1, "tid": 1, "ts": 7386250.4, "dur": 101594.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 101.5948, "detail": "UnityEngine.IMGUIModule" } },
{ "pid": 1, "tid": 1, "ts": 7487849.6, "dur": 2719.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 2.7191, "detail": "UnityEngine.JSONSerializeModule" } },
{ "pid": 1, "tid": 1, "ts": 7490570.4, "dur": 23735.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.7357, "detail": "UnityEngine.PhysicsModule" } },
{ "pid": 1, "tid": 1, "ts": 7514307.2, "dur": 909.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.9093, "detail": "UnityEngine.SpriteShapeModule" } },
{ "pid": 1, "tid": 1, "ts": 7515218.4, "dur": 53407.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 53.4079, "detail": "UnityEngine.TextCoreModule" } },
{ "pid": 1, "tid": 1, "ts": 7568631.2, "dur": 1033.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.0333, "detail": "UnityEngine.TilemapModule" } },
{ "pid": 1, "tid": 1, "ts": 7569667.2, "dur": 36512.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 36.5129, "detail": "UnityEngine.UIModule" } },
{ "pid": 1, "tid": 1, "ts": 7606181.6, "dur": 3474.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3.4745, "detail": "UnityEngine.UnityWebRequestTextureModule" } },
{ "pid": 1, "tid": 1, "ts": 7609657.6, "dur": 459.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.4595, "detail": "UnityEngine" } },
{ "pid": 1, "tid": 1, "ts": 7610119.2, "dur": 505001, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 505.001, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 8115123.2, "dur": 1037599.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1037.5997, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 9152724.8, "dur": 8307, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 8.307, "detail": "DOTween43" } },
{ "pid": 1, "tid": 1, "ts": 9161033.6, "dur": 23212.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.2125, "detail": "DOTween46" } },
{ "pid": 1, "tid": 1, "ts": 9184248, "dur": 26444.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 26.4442, "detail": "DOTweenPro" } },
{ "pid": 1, "tid": 1, "ts": 9210693.6, "dur": 43548.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 43.5487, "detail": "I18N" } },
{ "pid": 1, "tid": 1, "ts": 9254249.6, "dur": 101202.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 101.2029, "detail": "LitJson" } },
{ "pid": 1, "tid": 1, "ts": 9355456.8, "dur": 84736.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 84.7361, "detail": "I18N.CJK" } },
{ "pid": 1, "tid": 1, "ts": 9440196, "dur": 1823210, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1823.21, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 11263408, "dur": 331059.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 331.0596, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 11594630.4, "dur": 4512222.4, "ph": "X", "name": "WriteGenerics", "args": { "durationMS": 4512.2224, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 11595756.8, "dur": 1318483.1, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 1318.4831, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 12914250.4, "dur": 2892641, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 2892.641, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15807040, "dur": 299780.8, "ph": "X", "name": "GenericComDefinitions", "args": { "durationMS": 299.7808, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16107089.6, "dur": 608.9, "ph": "X", "name": "Executable Processing", "args": { "durationMS": 0.6089, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16108051.2, "dur": 305512, "ph": "X", "name": "MetadataCollector", "args": { "durationMS": 305.512, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16109536, "dur": 10549.2, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 10.5492, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16120724.8, "dur": 12954.3, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 12.9543, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16414011.2, "dur": 1841.3, "ph": "X", "name": "Write COM Callable Wrappers", "args": { "durationMS": 1.8413, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16415937.6, "dur": 487.4, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 0.4874, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16416724.8, "dur": 2704019.2, "ph": "X", "name": "Metadata", "args": { "durationMS": 2704.0192, "detail": "Global" } },
{ "pid": 1, "tid": 1, "ts": 16475366.4, "dur": 932757.5, "ph": "X", "name": "Il2CppAttributes.cpp", "args": { "durationMS": 932.7575, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17568009.6, "dur": 15436.4, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 15.4364, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17585444.8, "dur": 410875.2, "ph": "X", "name": "WriteCodeRegistration", "args": { "durationMS": 410.8752, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17585484.8, "dur": 91269.8, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 91.2698, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17663617.6, "dur": 3581.1, "ph": "X", "name": "GenericContextCollector", "args": { "durationMS": 3.5811, "detail": "Collect" } },
{ "pid": 1, "tid": 1, "ts": 17676774.4, "dur": 747.2, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 0.7472, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17677534.4, "dur": 976, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 0.976, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17678526.4, "dur": 462.5, "ph": "X", "name": "System.Xml_CodeGen.c", "args": { "durationMS": 0.4625, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17679000, "dur": 8474.8, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 8.4748, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17687488, "dur": 1275.2, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 1.2752, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17688772.8, "dur": 844, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 0.844, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17689625.6, "dur": 15228, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 15.228, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17704870.4, "dur": 477.7, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 0.4777, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17705356.8, "dur": 398.3, "ph": "X", "name": "UnityEngine.ImageConversionModule_CodeGen.c", "args": { "durationMS": 0.3983, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17705790.4, "dur": 920.3, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 0.9203, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17706742.4, "dur": 1380.2, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 1.3802, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17708134.4, "dur": 1132, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 1.132, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17709276.8, "dur": 873.9, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 0.8739, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17710179.2, "dur": 2244.8, "ph": "X", "name": "UnityEngine.AndroidJNIModule_CodeGen.c", "args": { "durationMS": 2.2448, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17712433.6, "dur": 1085, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 1.085, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17713566.4, "dur": 2080.8, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 2.0808, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17715659.2, "dur": 1687.6, "ph": "X", "name": "UnityEngine.GameCenterModule_CodeGen.c", "args": { "durationMS": 1.6876, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17717358.4, "dur": 1824.4, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 1.8244, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17719193.6, "dur": 384.7, "ph": "X", "name": "UnityEngine.JSONSerializeModule_CodeGen.c", "args": { "durationMS": 0.3847, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17719587.2, "dur": 991.9, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 0.9919, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17720851.2, "dur": 1176.4, "ph": "X", "name": "UnityEngine.TextCoreModule_CodeGen.c", "args": { "durationMS": 1.1764, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17722304, "dur": 1359.1, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 1.3591, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17723675.2, "dur": 566.7, "ph": "X", "name": "UnityEngine.UnityWebRequestTextureModule_CodeGen.c", "args": { "durationMS": 0.5667, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17724252.8, "dur": 369.3, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.3693, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17724630.4, "dur": 10803.1, "ph": "X", "name": "DOTween_CodeGen.c", "args": { "durationMS": 10.8031, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17735488, "dur": 17173.5, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 17.1735, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17752675.2, "dur": 768.7, "ph": "X", "name": "DOTween43_CodeGen.c", "args": { "durationMS": 0.7687, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17753452.8, "dur": 778.1, "ph": "X", "name": "DOTween46_CodeGen.c", "args": { "durationMS": 0.7781, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17754238.4, "dur": 537.4, "ph": "X", "name": "DOTweenPro_CodeGen.c", "args": { "durationMS": 0.5374, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17754784, "dur": 888.8, "ph": "X", "name": "I18N_CodeGen.c", "args": { "durationMS": 0.8888, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17755683.2, "dur": 1739.4, "ph": "X", "name": "LitJson_CodeGen.c", "args": { "durationMS": 1.7394, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17757432, "dur": 2062.7, "ph": "X", "name": "I18N.CJK_CodeGen.c", "args": { "durationMS": 2.0627, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17759505.6, "dur": 15064.3, "ph": "X", "name": "Unity.TextMeshPro_CodeGen.c", "args": { "durationMS": 15.0643, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17774588.8, "dur": 7055.4, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 7.0554, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17782249.6, "dur": 644.2, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 0.6442, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17783099.2, "dur": 110967.6, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 110.9676, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17894238.4, "dur": 85927.8, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 85.9278, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17980740.8, "dur": 13341.6, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 13.3416, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17995585.6, "dur": 733.6, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 0.7336, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17996323.2, "dur": 1124419.1, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 1124.4191, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18000262.4, "dur": 234229.2, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 234.2292, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18088134.4, "dur": 4171.6, "ph": "X", "name": "Metadata", "args": { "durationMS": 4.1716, "detail": "Collect string literals" } },
{ "pid": 1, "tid": 1, "ts": 18248067.2, "dur": 21319.6, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 21.3196, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18269403.2, "dur": 31867.4, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 31.8674, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18301297.6, "dur": 305346.7, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 305.3467, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18606668.8, "dur": 101923.2, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 101.9232, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18708617.6, "dur": 59737.2, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 59.7372, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18768364.8, "dur": 145078.7, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 145.0787, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18913468.8, "dur": 1751.8, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 1.7518, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18915553.6, "dur": 7030.3, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 7.0303, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18922694.4, "dur": 1051.8, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 1.0518, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18923752, "dur": 4053.1, "ph": "X", "name": "Events", "args": { "durationMS": 4.0531, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18927809.6, "dur": 8615.4, "ph": "X", "name": "Properties", "args": { "durationMS": 8.6154, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18936435.2, "dur": 63950.2, "ph": "X", "name": "Methods", "args": { "durationMS": 63.9502, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19000393.6, "dur": 3626.5, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 3.6265, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19004025.6, "dur": 4910.9, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 4.9109, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19009164.8, "dur": 462.5, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.4625, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19009630.4, "dur": 16061.8, "ph": "X", "name": "Parameters", "args": { "durationMS": 16.0618, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19025700.8, "dur": 10342.2, "ph": "X", "name": "Fields", "args": { "durationMS": 10.3422, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19036051.2, "dur": 3893.7, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 3.8937, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19039950.4, "dur": 916, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.916, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19040870.4, "dur": 3762.3, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 3.7623, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19045033.6, "dur": 2077.2, "ph": "X", "name": "VTables", "args": { "durationMS": 2.0772, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19047113.6, "dur": 1252.6, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.2526, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19048371.2, "dur": 47388.1, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 47.3881, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19095774.4, "dur": 5971.3, "ph": "X", "name": "Images", "args": { "durationMS": 5.9713, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19101752, "dur": 3729.3, "ph": "X", "name": "Assemblies", "args": { "durationMS": 3.7293, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19105486.4, "dur": 899.1, "ph": "X", "name": "Metadata Usage Lists", "args": { "durationMS": 0.8991, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19106390.4, "dur": 2494, "ph": "X", "name": "Metadata Usage Pairs", "args": { "durationMS": 2.494, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19109004.8, "dur": 499.2, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.4992, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19109508.8, "dur": 1105.1, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 1.1051, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19110620.8, "dur": 442.2, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 0.4422, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19111217.6, "dur": 624.6, "ph": "X", "name": "Unresolved Virtual Call Parameter Ranges", "args": { "durationMS": 0.6246, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19112006.4, "dur": 4068.8, "ph": "X", "name": "Exported Types", "args": { "durationMS": 4.0688, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19120947.2, "dur": 964.1, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 0.9641, "detail": "" } }
{ "pid": 1, "tid": 1, "ts": 763.9, "dur": 19237169.6, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 19237.1696, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14204, "dur": 19223689.6, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 19223.6896, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 37692.6, "dur": 99808.3, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 99.8083, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 138063.4, "dur": 34721.6, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 34.7216, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 172937.8, "dur": 53422.1, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 53.4221, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 172938.9, "dur": 9155.9, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 9.1559, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 173232.8, "dur": 6227.1, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 6.2271, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 180162.5, "dur": 913, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.913, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 181076.2, "dur": 532.2, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.5322, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 182097.3, "dur": 44262.5, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 44.2625, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 182251.9, "dur": 27479.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 27.4792, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 209822.4, "dur": 1828.6, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.8286, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 211885.7, "dur": 1912.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.9122, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 214153.8, "dur": 396.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.3962, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 215567.1, "dur": 5461.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 5.4612, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 221029.2, "dur": 1591.1, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.5911, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 222859.1, "dur": 401.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.4014, "detail": "LitJson" } },
{ "pid": 1, "tid": 1, "ts": 223555.5, "dur": 2115.7, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 2.1157, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 225671.8, "dur": 687, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.687, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 226481.2, "dur": 10094.9, "ph": "X", "name": "WriteResources", "args": { "durationMS": 10.0949, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 236762.6, "dur": 27587.8, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 27.5878, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 265240.4, "dur": 267816.7, "ph": "X", "name": "PreProcessStage", "args": { "durationMS": 267.8167, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 533816.6, "dur": 1304.2, "ph": "X", "name": "Debugger Sequence Points", "args": { "durationMS": 1.3042, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 535930.8, "dur": 1453946.7, "ph": "X", "name": "Generics Collection", "args": { "durationMS": 1453.9467, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 535931.8, "dur": 1424863.7, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 1424.8637, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 536629.3, "dur": 13940.9, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 13.9409, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 536630.3, "dur": 13397.5, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 13.3975, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1960805, "dur": 28009.1, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 28.0091, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1988817, "dur": 848.7, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 0.8487, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1989879.6, "dur": 1267.7, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.2677, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1991815.8, "dur": 9820108.8, "ph": "X", "name": "AllAssemblyConversion", "args": { "durationMS": 9820.1088, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1992412.8, "dur": 4220000.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 4220.0008, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 6212417.6, "dur": 5850.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 5.8507, "detail": "System.Configuration" } },
{ "pid": 1, "tid": 1, "ts": 6218270.4, "dur": 14455.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 14.4557, "detail": "Mono.Security" } },
{ "pid": 1, "tid": 1, "ts": 6232728.4, "dur": 1035.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.0359, "detail": "System.Xml" } },
{ "pid": 1, "tid": 1, "ts": 6233765.6, "dur": 489016.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 489.0164, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 6722786.4, "dur": 1615.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.6156, "detail": "System.Core" } },
{ "pid": 1, "tid": 1, "ts": 6724404.8, "dur": 19407.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 19.4076, "detail": "UnityEngine.SharedInternalsModule" } },
{ "pid": 1, "tid": 1, "ts": 6743814.4, "dur": 588249.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 588.2491, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 7332065.6, "dur": 798, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.798, "detail": "UnityEngine.GridModule" } },
{ "pid": 1, "tid": 1, "ts": 7332864.8, "dur": 945.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.9451, "detail": "UnityEngine.ImageConversionModule" } },
{ "pid": 1, "tid": 1, "ts": 7333812, "dur": 17204.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 17.2047, "detail": "UnityEngine.InputLegacyModule" } },
{ "pid": 1, "tid": 1, "ts": 7351017.6, "dur": 25742.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 25.7422, "detail": "UnityEngine.Physics2DModule" } },
{ "pid": 1, "tid": 1, "ts": 7376762.4, "dur": 22298.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 22.2981, "detail": "UnityEngine.TextRenderingModule" } },
{ "pid": 1, "tid": 1, "ts": 7399062.4, "dur": 33659.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 33.6597, "detail": "UnityEngine.UnityWebRequestModule" } },
{ "pid": 1, "tid": 1, "ts": 7432724, "dur": 90027.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 90.0272, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 7522755.2, "dur": 28131.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 28.1315, "detail": "UnityEngine.AnimationModule" } },
{ "pid": 1, "tid": 1, "ts": 7550888.8, "dur": 15682.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 15.6826, "detail": "UnityEngine.AudioModule" } },
{ "pid": 1, "tid": 1, "ts": 7566572.8, "dur": 54837.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 54.8375, "detail": "UnityEngine.GameCenterModule" } },
{ "pid": 1, "tid": 1, "ts": 7621412.8, "dur": 101415.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 101.4157, "detail": "UnityEngine.IMGUIModule" } },
{ "pid": 1, "tid": 1, "ts": 7722831.2, "dur": 2488.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 2.4881, "detail": "UnityEngine.JSONSerializeModule" } },
{ "pid": 1, "tid": 1, "ts": 7725320.8, "dur": 28254.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 28.2548, "detail": "UnityEngine.PhysicsModule" } },
{ "pid": 1, "tid": 1, "ts": 7753577.6, "dur": 868.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8687, "detail": "UnityEngine.SpriteShapeModule" } },
{ "pid": 1, "tid": 1, "ts": 7754448, "dur": 40208, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 40.208, "detail": "UnityEngine.TextCoreModule" } },
{ "pid": 1, "tid": 1, "ts": 7794657.6, "dur": 879.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8792, "detail": "UnityEngine.TilemapModule" } },
{ "pid": 1, "tid": 1, "ts": 7795538.4, "dur": 29810.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 29.8104, "detail": "UnityEngine.UIModule" } },
{ "pid": 1, "tid": 1, "ts": 7825350.4, "dur": 3256.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3.2563, "detail": "UnityEngine.UnityWebRequestTextureModule" } },
{ "pid": 1, "tid": 1, "ts": 7828608, "dur": 429.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.4296, "detail": "UnityEngine" } },
{ "pid": 1, "tid": 1, "ts": 7829038.4, "dur": 488430.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 488.4303, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 8317473.6, "dur": 1069580.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1069.5807, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 9387057.6, "dur": 7913.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 7.9137, "detail": "DOTween43" } },
{ "pid": 1, "tid": 1, "ts": 9394972.8, "dur": 21562.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 21.5622, "detail": "DOTween46" } },
{ "pid": 1, "tid": 1, "ts": 9416539.2, "dur": 28777.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 28.7775, "detail": "DOTweenPro" } },
{ "pid": 1, "tid": 1, "ts": 9445320.8, "dur": 42715, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 42.715, "detail": "I18N" } },
{ "pid": 1, "tid": 1, "ts": 9488039.2, "dur": 97064.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 97.0645, "detail": "LitJson" } },
{ "pid": 1, "tid": 1, "ts": 9585107.2, "dur": 88933.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 88.9339, "detail": "I18N.CJK" } },
{ "pid": 1, "tid": 1, "ts": 9674044.8, "dur": 1792063.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1792.0638, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 11466112, "dur": 345811.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 345.8114, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 11812097.6, "dur": 4428148.8, "ph": "X", "name": "WriteGenerics", "args": { "durationMS": 4428.1488, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 11813396, "dur": 1285057.1, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 1285.0571, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 13098462.4, "dur": 2853463.6, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 2853.4636, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15952056, "dur": 288159.2, "ph": "X", "name": "GenericComDefinitions", "args": { "durationMS": 288.1592, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16240488, "dur": 608.8, "ph": "X", "name": "Executable Processing", "args": { "durationMS": 0.6088, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16241404.8, "dur": 301375.2, "ph": "X", "name": "MetadataCollector", "args": { "durationMS": 301.3752, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16242489.6, "dur": 10013.2, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 10.0132, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16253153.6, "dur": 13145.9, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 13.1459, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16543353.6, "dur": 1858.3, "ph": "X", "name": "Write COM Callable Wrappers", "args": { "durationMS": 1.8583, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16545296, "dur": 484.6, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 0.4846, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16546097.6, "dur": 2689944.8, "ph": "X", "name": "Metadata", "args": { "durationMS": 2689.9448, "detail": "Global" } },
{ "pid": 1, "tid": 1, "ts": 16602284.8, "dur": 909898.6, "ph": "X", "name": "Il2CppAttributes.cpp", "args": { "durationMS": 909.8986, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17670670.4, "dur": 15348.1, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 15.3481, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17687915.2, "dur": 409875.4, "ph": "X", "name": "WriteCodeRegistration", "args": { "durationMS": 409.8754, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17687992, "dur": 88852, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 88.852, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17764056, "dur": 3541, "ph": "X", "name": "GenericContextCollector", "args": { "durationMS": 3.541, "detail": "Collect" } },
{ "pid": 1, "tid": 1, "ts": 17776865.6, "dur": 693.4, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 0.6934, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17777571.2, "dur": 584.3, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 0.5843, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17778504, "dur": 8189, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 8.189, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17786707.2, "dur": 1360.3, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 1.3603, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17788105.6, "dur": 956.9, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 0.9569, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17789072, "dur": 17477.9, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 17.4779, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17803148.8, "dur": 922.5, "ph": "X", "name": "GenericContextCollector", "args": { "durationMS": 0.9225, "detail": "Collect" } },
{ "pid": 1, "tid": 1, "ts": 17806569.6, "dur": 538.2, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 0.5382, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17807123.2, "dur": 459.8, "ph": "X", "name": "UnityEngine.ImageConversionModule_CodeGen.c", "args": { "durationMS": 0.4598, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17807593.6, "dur": 823.2, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 0.8232, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17808425.6, "dur": 892.3, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 0.8923, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17809328, "dur": 777.7, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 0.7777, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17810116.8, "dur": 775.2, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 0.7752, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17810904, "dur": 2331.7, "ph": "X", "name": "UnityEngine.AndroidJNIModule_CodeGen.c", "args": { "durationMS": 2.3317, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17813260.8, "dur": 1071.4, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 1.0714, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17814342.4, "dur": 1048.6, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 1.0486, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17815401.6, "dur": 1937.2, "ph": "X", "name": "UnityEngine.GameCenterModule_CodeGen.c", "args": { "durationMS": 1.9372, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17817393.6, "dur": 2207.5, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 2.2075, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17819612.8, "dur": 410.8, "ph": "X", "name": "UnityEngine.JSONSerializeModule_CodeGen.c", "args": { "durationMS": 0.4108, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17820033.6, "dur": 1206.7, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 1.2067, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17821609.6, "dur": 1521.8, "ph": "X", "name": "UnityEngine.TextCoreModule_CodeGen.c", "args": { "durationMS": 1.5218, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17823145.6, "dur": 340.9, "ph": "X", "name": "UnityEngine.TilemapModule_CodeGen.c", "args": { "durationMS": 0.3409, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17823494.4, "dur": 1855.2, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 1.8552, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17825361.6, "dur": 407, "ph": "X", "name": "UnityEngine.UnityWebRequestTextureModule_CodeGen.c", "args": { "durationMS": 0.407, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17825779.2, "dur": 341.4, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.3414, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17826132.8, "dur": 11271.1, "ph": "X", "name": "DOTween_CodeGen.c", "args": { "durationMS": 11.2711, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17837419.2, "dur": 16327.4, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 16.3274, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17853764.8, "dur": 616.5, "ph": "X", "name": "DOTween43_CodeGen.c", "args": { "durationMS": 0.6165, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17854390.4, "dur": 870.5, "ph": "X", "name": "DOTween46_CodeGen.c", "args": { "durationMS": 0.8705, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17855272, "dur": 578.8, "ph": "X", "name": "DOTweenPro_CodeGen.c", "args": { "durationMS": 0.5788, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17855860.8, "dur": 1181.4, "ph": "X", "name": "I18N_CodeGen.c", "args": { "durationMS": 1.1814, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17857057.6, "dur": 1811.2, "ph": "X", "name": "LitJson_CodeGen.c", "args": { "durationMS": 1.8112, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17858880, "dur": 2137.1, "ph": "X", "name": "I18N.CJK_CodeGen.c", "args": { "durationMS": 2.1371, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17861028.8, "dur": 14261.9, "ph": "X", "name": "Unity.TextMeshPro_CodeGen.c", "args": { "durationMS": 14.2619, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17875305.6, "dur": 4483.6, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 4.4836, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17880408, "dur": 676.6, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 0.6766, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17881220.8, "dur": 113367.2, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 113.3672, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17994752, "dur": 85720.9, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 85.7209, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18081009.6, "dur": 14434.8, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 14.4348, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18097009.6, "dur": 779.4, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 0.7794, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18097800, "dur": 1138242.3, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 1138.2423, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18102313.6, "dur": 240978.2, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 240.9782, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18190772.8, "dur": 4000.4, "ph": "X", "name": "Metadata", "args": { "durationMS": 4.0004, "detail": "Collect string literals" } },
{ "pid": 1, "tid": 1, "ts": 18355876.8, "dur": 24906.3, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 24.9063, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18380800, "dur": 32917.1, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 32.9171, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18413739.2, "dur": 300928.9, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 300.9289, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18714692.8, "dur": 100243.9, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 100.2439, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18814963.2, "dur": 62965.4, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 62.9654, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 18877936, "dur": 150208.2, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 150.2082, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19028171.2, "dur": 1853.5, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 1.8535, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19030587.2, "dur": 9496.5, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 9.4965, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19040190.4, "dur": 958.2, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 0.9582, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19041153.6, "dur": 4441.1, "ph": "X", "name": "Events", "args": { "durationMS": 4.4411, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19045600, "dur": 8318.7, "ph": "X", "name": "Properties", "args": { "durationMS": 8.3187, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19053929.6, "dur": 59914.9, "ph": "X", "name": "Methods", "args": { "durationMS": 59.9149, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19113856, "dur": 3835.4, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 3.8354, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19117696, "dur": 4187.5, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 4.1875, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19122108.8, "dur": 429.6, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.4296, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19122544, "dur": 14572.7, "ph": "X", "name": "Parameters", "args": { "durationMS": 14.5727, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19137124.8, "dur": 9828.5, "ph": "X", "name": "Fields", "args": { "durationMS": 9.8285, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19146961.6, "dur": 3525.6, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 3.5256, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19150492.8, "dur": 859.8, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.8598, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19151356.8, "dur": 7195.5, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 7.1955, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19158972.8, "dur": 1949.6, "ph": "X", "name": "VTables", "args": { "durationMS": 1.9496, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19160926.4, "dur": 1236.7, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.2367, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19162168, "dur": 45518.5, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 45.5185, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19207699.2, "dur": 5751.6, "ph": "X", "name": "Images", "args": { "durationMS": 5.7516, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19213456, "dur": 4243, "ph": "X", "name": "Assemblies", "args": { "durationMS": 4.243, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19217704, "dur": 877.9, "ph": "X", "name": "Metadata Usage Lists", "args": { "durationMS": 0.8779, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19218587.2, "dur": 2546.4, "ph": "X", "name": "Metadata Usage Pairs", "args": { "durationMS": 2.5464, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19221275.2, "dur": 497.2, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.4972, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19221776, "dur": 995.7, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 0.9957, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19222777.6, "dur": 421.9, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 0.4219, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19223348.8, "dur": 534.2, "ph": "X", "name": "Unresolved Virtual Call Parameter Ranges", "args": { "durationMS": 0.5342, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19224040, "dur": 4030.1, "ph": "X", "name": "Exported Types", "args": { "durationMS": 4.0301, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19236313.6, "dur": 706.9, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 0.7069, "detail": "" } }
],
"meta_datetime": "11/13/2020 10:52:56",
"meta_datetime": "11/13/2020 15:14:46",
"meta_command_line": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput",
"meta_command_line_args": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput",
"meta_user_name": "mazy",
......
No preview for this file type
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -3,38 +3,4 @@
uuid = "4A11BE7E-1EBF-4E83-9D51-2ED4EFD99DC9"
type = "0"
version = "2.0">
<Breakpoints>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "C6F380D1-80EF-408A-9AD1-B00DBF24FABE"
shouldBeEnabled = "Yes"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "GYDemo/GYDemo/AppDelegate.mm"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "344"
endingLineNumber = "344"
landmarkName = "-ios_getCloudSpeed"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
<BreakpointProxy
BreakpointExtensionID = "Xcode.Breakpoint.FileBreakpoint">
<BreakpointContent
uuid = "71BC9847-D05B-43CD-A4B7-62B10F03DD04"
shouldBeEnabled = "No"
ignoreCount = "0"
continueAfterRunningActions = "No"
filePath = "GYDemo/GYDemo/AppDelegate.mm"
startingColumnNumber = "9223372036854775807"
endingColumnNumber = "9223372036854775807"
startingLineNumber = "331"
endingLineNumber = "331"
landmarkName = "-ios_getHomeInfo"
landmarkType = "7">
</BreakpointContent>
</BreakpointProxy>
</Breakpoints>
</Bucket>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment