diff --git a/LMC/Assets/A.prefab b/LMC/Assets/A.prefab index 6f4672c5..3bfaedb4 100644 --- a/LMC/Assets/A.prefab +++ b/LMC/Assets/A.prefab @@ -46,6 +46,7 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: Name: {fileID: 2155252081681785822} + Val: 0 --- !u!1 &3022990752737702646 GameObject: m_ObjectHideFlags: 0 @@ -384,7 +385,9 @@ MonoBehaviour: m_EditorClassIdentifier: CurrentAction: 0 TimeRotation: 0 - AngleRotation: -0.1 + AngleRotation: -160 + TimePassed: 0 + SumAngleRotate: 0 DoorIsMoving: 0 --- !u!1 &7115776030973179702 GameObject: @@ -397,7 +400,6 @@ GameObject: - component: {fileID: 2754178639470773891} - component: {fileID: 4448167961109024055} - component: {fileID: 1694139564342029656} - - component: {fileID: 1574267693367435642} m_Layer: 0 m_Name: Cabinet m_TagString: Untagged @@ -638,6 +640,10 @@ PrefabInstance: propertyPath: m_Name value: Cabinet objectReference: {fileID: 0} + - target: {fileID: 5298247443101524516, guid: fc03c732175eadc47933eb633f615c6b, type: 3} + propertyPath: AngleRotation + value: -160 + objectReference: {fileID: 0} - target: {fileID: 5556232703678627886, guid: fc03c732175eadc47933eb633f615c6b, type: 3} propertyPath: m_RootOrder value: 0 @@ -685,24 +691,5 @@ PrefabInstance: m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] - m_AddedComponents: - - targetCorrespondingSourceObject: {fileID: 5066660185504488084, guid: fc03c732175eadc47933eb633f615c6b, type: 3} - insertIndex: -1 - addedObject: {fileID: 1574267693367435642} + m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: fc03c732175eadc47933eb633f615c6b, type: 3} ---- !u!114 &1574267693367435642 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 7115776030973179702} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: ed4044aee80d39a4fa934c51059b8e5d, type: 3} - m_Name: - m_EditorClassIdentifier: - CurrentAction: 0 - TimeRotation: 0 - AngleRotation: -0.1 - DoorIsMoving: 0 diff --git a/LMC/Assets/DoorOpen.cs b/LMC/Assets/DoorOpen.cs index 8c3196a5..ebf98fb8 100644 --- a/LMC/Assets/DoorOpen.cs +++ b/LMC/Assets/DoorOpen.cs @@ -9,12 +9,12 @@ public class DoorAnimation : MonoBehaviour [SerializeField] public int CurrentAction = 0; public int TimeRotation = 0; - public float AngleRotation = -0.1f; + public float AngleRotation = -160.0f, TimePassed = 0.0f; public bool DoorIsMoving = false; void Start() { - + } public void OpenDoor() { @@ -29,27 +29,31 @@ public class DoorAnimation : MonoBehaviour void Update() { if(CurrentAction == 1) { - if(TimeRotation < 900) { - TimeRotation += 1; + if(TimePassed < 1.0f) { + float NewTime = Mathf.Min(1.0f - TimePassed, Time.deltaTime); + float AngleRotate = AngleRotation * NewTime; + transform.Rotate(0, 0, AngleRotate); + TimePassed += NewTime; DoorIsMoving = true; - transform.Rotate(0, 0, AngleRotation); } else { DoorIsMoving = false; CurrentAction = 0; - TimeRotation = 0; + TimePassed = 0.0f; } } else if(CurrentAction == 2) { - if(TimeRotation < 900) { - TimeRotation += 1; + if(TimePassed < 1.0f) { + float NewTime = Mathf.Min(1.0f - TimePassed, Time.deltaTime); + float AngleRotate = -AngleRotation * NewTime; + transform.Rotate(0, 0, AngleRotate); + TimePassed += NewTime; DoorIsMoving = true; - transform.Rotate(0, 0, -AngleRotation); } else { DoorIsMoving = false; CurrentAction = 0; - TimeRotation = 0; + TimePassed = 0.0f; } } } diff --git a/LMC/Assets/Initalize.cs b/LMC/Assets/Initalize.cs index 9dd8a460..fe032c7c 100644 --- a/LMC/Assets/Initalize.cs +++ b/LMC/Assets/Initalize.cs @@ -89,7 +89,6 @@ public class Initalize : MonoBehaviour void Op901() { // Code to summon number from Input Bracket - Debug.Log(AllInput.Peek() + " and " + AllInput.Count); AllOperation.Enqueue(Cope(100, AllInput.Peek(), 0)); FakeAccumulator = AllInput.Peek(); AllInput.Dequeue(); } @@ -143,6 +142,8 @@ public class Initalize : MonoBehaviour int[] EncodeOperation = new int[100]; int InstructionLength = InstructionText.Length, Counter = 0; for(int i = 0; i < InstructionLength - 2; i += 4) { + while(i < InstructionLength && !CheckDigit(InstructionText[i])) + ++i; EncodeOperation[Counter] = Convert.ToInt32(InstructionText.Substring(i, 3)); Counter += 1; } @@ -199,7 +200,7 @@ public class Initalize : MonoBehaviour if(ActionChange == 1) Door[IndexChange].OpenDoor(); else Door[IndexChange].CloseDoor(); } - if(Door[IndexChange].TimeRotation == 900) { + if(Door[IndexChange].TimePassed >= 1.0f) { ActionExisted = false; IndexChange = -1; ActionChange = -1; @@ -237,4 +238,8 @@ public class Initalize : MonoBehaviour } } } + + void LateUpdate() { + + } } diff --git a/LMC/Assets/Scenes/SampleScene.unity b/LMC/Assets/Scenes/SampleScene.unity index 94647616..54a36ef9 100644 --- a/LMC/Assets/Scenes/SampleScene.unity +++ b/LMC/Assets/Scenes/SampleScene.unity @@ -1324,7 +1324,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 17da3fd4e0129f5449ca3ef38c7c6467, type: 3} propertyPath: m_LocalPosition.x - value: 60.667034 + value: 66.8 objectReference: {fileID: 0} - target: {fileID: -8679921383154817045, guid: 17da3fd4e0129f5449ca3ef38c7c6467, type: 3} propertyPath: m_LocalPosition.y @@ -4731,14 +4731,14 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 963194225} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 71.8, y: 49.9, z: -145.6} + m_LocalRotation: {x: 0.09587541, y: 0.24321201, z: -0.02416578, w: 0.9649207} + m_LocalPosition: {x: -12, y: 19.4, z: -38.9} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_LocalEulerAnglesHint: {x: 11.349, y: 28.294, z: 0} --- !u!1001 &966064722 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/LMC/Library/ArtifactDB b/LMC/Library/ArtifactDB index cf8f6bcc..5be023bc 100644 Binary files a/LMC/Library/ArtifactDB and b/LMC/Library/ArtifactDB differ diff --git a/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 b/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 new file mode 100644 index 00000000..944300f4 Binary files /dev/null and b/LMC/Library/Artifacts/01/01aca0b33b535e9f6e138f78249318a0 differ diff --git a/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 b/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 new file mode 100644 index 00000000..d7db22b7 Binary files /dev/null and b/LMC/Library/Artifacts/04/04f3c331d45ebe8e66081dd81cd0f036 differ diff --git a/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 b/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 new file mode 100644 index 00000000..42e6e58b Binary files /dev/null and b/LMC/Library/Artifacts/05/05dcb6b94c7f7d5e91625110a48975f6 differ diff --git a/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f b/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f new file mode 100644 index 00000000..89a85f16 Binary files /dev/null and b/LMC/Library/Artifacts/06/06a3391a1b0ed076cce494f10207ec0f differ diff --git a/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 b/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 new file mode 100644 index 00000000..75a0f900 Binary files /dev/null and b/LMC/Library/Artifacts/09/0995ce24cdc6b09da0bf5c3fc02466e6 differ diff --git a/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 b/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 new file mode 100644 index 00000000..8a36ac0c Binary files /dev/null and b/LMC/Library/Artifacts/0a/0a6b16949320c0657d0ac4e61cdd8d37 differ diff --git a/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 b/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 new file mode 100644 index 00000000..6916fdd2 Binary files /dev/null and b/LMC/Library/Artifacts/0b/0b9db67cfd990f8523877882c31bcac8 differ diff --git a/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb b/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb new file mode 100644 index 00000000..2ef0f9ed Binary files /dev/null and b/LMC/Library/Artifacts/0b/0bbba80ad3c36e445dc6e0b3694ad6fb differ diff --git a/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 b/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 new file mode 100644 index 00000000..a3e02e5a Binary files /dev/null and b/LMC/Library/Artifacts/0d/0df27b8152a9f8c01735ece00bbe0259 differ diff --git a/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b b/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b new file mode 100644 index 00000000..4bc0d244 Binary files /dev/null and b/LMC/Library/Artifacts/10/10dcbb151e320e154922380e369b517b differ diff --git a/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 b/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 new file mode 100644 index 00000000..1f720a87 Binary files /dev/null and b/LMC/Library/Artifacts/11/11b05ec69091e5086abd65a5fd459320 differ diff --git a/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a b/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a new file mode 100644 index 00000000..468f064b Binary files /dev/null and b/LMC/Library/Artifacts/12/128a85edc028438eecb960ed44b6b59a differ diff --git a/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b b/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b new file mode 100644 index 00000000..cc46d677 Binary files /dev/null and b/LMC/Library/Artifacts/13/130401646986624ee07506f1ddbb6e9b differ diff --git a/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd b/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd new file mode 100644 index 00000000..8db579bc Binary files /dev/null and b/LMC/Library/Artifacts/14/141d45cfa3c2b5b2e9d226df3579ebfd differ diff --git a/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d b/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d new file mode 100644 index 00000000..570f1af6 Binary files /dev/null and b/LMC/Library/Artifacts/15/15f3adbc96364ddea15e8402c1c7c11d differ diff --git a/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 b/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 new file mode 100644 index 00000000..c3457053 Binary files /dev/null and b/LMC/Library/Artifacts/16/1633b6b5e346333bf12eab8620137cf7 differ diff --git a/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 b/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 new file mode 100644 index 00000000..9bfd0d79 Binary files /dev/null and b/LMC/Library/Artifacts/18/18bcf7c7fbc1591f260ad8aa439447a6 differ diff --git a/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb b/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb new file mode 100644 index 00000000..037c8001 Binary files /dev/null and b/LMC/Library/Artifacts/1b/1b00ea254b6ac6a7f6dbe7b8552504cb differ diff --git a/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 b/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 new file mode 100644 index 00000000..7c36b48a Binary files /dev/null and b/LMC/Library/Artifacts/1c/1caa8a3c59942f3ab0cff46ca033f623 differ diff --git a/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b b/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b new file mode 100644 index 00000000..e691c95c Binary files /dev/null and b/LMC/Library/Artifacts/1d/1d06bd2851c2759ecac1c20684c7b83b differ diff --git a/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f b/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f new file mode 100644 index 00000000..06713500 Binary files /dev/null and b/LMC/Library/Artifacts/1d/1d5a603c4806ace44b67a565a160849f differ diff --git a/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 b/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 new file mode 100644 index 00000000..d76351cf Binary files /dev/null and b/LMC/Library/Artifacts/1f/1f2310a9e3009f02f7d9af4b8c40fd85 differ diff --git a/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 b/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 new file mode 100644 index 00000000..e407ade9 Binary files /dev/null and b/LMC/Library/Artifacts/1f/1f69ffacb544005160189848fe083563 differ diff --git a/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 b/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 new file mode 100644 index 00000000..1a61faf2 Binary files /dev/null and b/LMC/Library/Artifacts/20/2020861cee9b7b106e036b5236c73e51 differ diff --git a/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 b/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 new file mode 100644 index 00000000..bcb504d3 Binary files /dev/null and b/LMC/Library/Artifacts/20/202e48898f25b89d1cb53c31f5a29500 differ diff --git a/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d b/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d new file mode 100644 index 00000000..7b5c2152 Binary files /dev/null and b/LMC/Library/Artifacts/20/20b73b99b78b3091154b063a121e907d differ diff --git a/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 b/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 new file mode 100644 index 00000000..f6ee88c8 Binary files /dev/null and b/LMC/Library/Artifacts/23/2328852de2f51cb58d9bffd1c70d85f7 differ diff --git a/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 b/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 new file mode 100644 index 00000000..deaf0f0f Binary files /dev/null and b/LMC/Library/Artifacts/25/25e17c6cb08692b11e5bee0c2fccedd2 differ diff --git a/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 b/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 new file mode 100644 index 00000000..533f1671 Binary files /dev/null and b/LMC/Library/Artifacts/26/260fa7b6723d81cdb958ff7140f82e54 differ diff --git a/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a b/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a new file mode 100644 index 00000000..9e905e51 Binary files /dev/null and b/LMC/Library/Artifacts/27/2749d280d75797ce5d53792b80f4e20a differ diff --git a/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e b/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e new file mode 100644 index 00000000..f506a838 Binary files /dev/null and b/LMC/Library/Artifacts/2b/2bc5620e6829f00ffc2dcb390b5cc45e differ diff --git a/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 b/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 new file mode 100644 index 00000000..5e0a2dfc Binary files /dev/null and b/LMC/Library/Artifacts/2b/2bddff3fc86e8f3218863230a15cac29 differ diff --git a/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec b/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec new file mode 100644 index 00000000..95e4bd33 Binary files /dev/null and b/LMC/Library/Artifacts/2c/2c4d3563662500012d4573e8a499d8ec differ diff --git a/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 b/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 new file mode 100644 index 00000000..dc565924 Binary files /dev/null and b/LMC/Library/Artifacts/2c/2cb70d542ba9fbecd446b61f41b62b72 differ diff --git a/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 b/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 new file mode 100644 index 00000000..15809dfb Binary files /dev/null and b/LMC/Library/Artifacts/2d/2d75577fb6b3dc3d4dbdd8dbc1d3a058 differ diff --git a/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 b/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 new file mode 100644 index 00000000..251edefa Binary files /dev/null and b/LMC/Library/Artifacts/31/3199d88e23d11d3866501b7b7b491870 differ diff --git a/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b b/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b new file mode 100644 index 00000000..207f41da Binary files /dev/null and b/LMC/Library/Artifacts/32/324b278ccd62306271d870e595bbf78b differ diff --git a/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 b/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 new file mode 100644 index 00000000..76cc434c Binary files /dev/null and b/LMC/Library/Artifacts/34/3491528e7b354b27c795d8cd18ead9a0 differ diff --git a/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 b/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 new file mode 100644 index 00000000..6ef11a54 Binary files /dev/null and b/LMC/Library/Artifacts/35/3509fe91a9635d1a3e6cbc69eea37619 differ diff --git a/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 b/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 new file mode 100644 index 00000000..bc201465 Binary files /dev/null and b/LMC/Library/Artifacts/35/35be4663c90c76fbbb143948b7568770 differ diff --git a/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab b/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab new file mode 100644 index 00000000..cb6bc43c Binary files /dev/null and b/LMC/Library/Artifacts/36/3641af4b9d78c77a8bc6054cc52ef0ab differ diff --git a/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 b/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 new file mode 100644 index 00000000..4729a61c Binary files /dev/null and b/LMC/Library/Artifacts/36/36883154152e9c037c023605f6b025a9 differ diff --git a/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be b/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be new file mode 100644 index 00000000..6356fe96 Binary files /dev/null and b/LMC/Library/Artifacts/37/379593a4e851e0aa989a1d2463a497be differ diff --git a/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c b/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c new file mode 100644 index 00000000..5d27ff79 Binary files /dev/null and b/LMC/Library/Artifacts/38/386612c0e94f0dc53c3ebae9682ccb6c differ diff --git a/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 b/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 new file mode 100644 index 00000000..ffdd05d3 Binary files /dev/null and b/LMC/Library/Artifacts/3b/3bcc5a47a543143ca2948e4517929013 differ diff --git a/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e b/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e new file mode 100644 index 00000000..5d65b40b Binary files /dev/null and b/LMC/Library/Artifacts/3b/3bece47199bdd6d8a27b2c97328f8c2e differ diff --git a/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e b/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e new file mode 100644 index 00000000..88314f34 Binary files /dev/null and b/LMC/Library/Artifacts/3c/3c4c5c0cf93a96344461505a1a6eb55e differ diff --git a/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 b/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 new file mode 100644 index 00000000..93ff935b Binary files /dev/null and b/LMC/Library/Artifacts/3d/3d0b50c6beae7c69f8f837fae3f51ee9 differ diff --git a/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff b/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff new file mode 100644 index 00000000..424fd6f7 Binary files /dev/null and b/LMC/Library/Artifacts/3d/3d7936fcd51cae3d8d8491fbe78fe8ff differ diff --git a/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d b/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d new file mode 100644 index 00000000..40626947 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3edaf40bbee5fa096509fa513e9bbe3d differ diff --git a/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 b/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 new file mode 100644 index 00000000..37c3b930 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3ee5ba21b03a6bf53d36665dcd66cfb0 differ diff --git a/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 b/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 new file mode 100644 index 00000000..e7351ab3 Binary files /dev/null and b/LMC/Library/Artifacts/3e/3ef50a144a65053ec08a2d723d568253 differ diff --git a/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f b/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f new file mode 100644 index 00000000..a706d2ad Binary files /dev/null and b/LMC/Library/Artifacts/3f/3fac42ca7c429f55a5895635d5957c4f differ diff --git a/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a b/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a new file mode 100644 index 00000000..3a6110a0 Binary files /dev/null and b/LMC/Library/Artifacts/40/40d43e55b6393a3daaf161a62e9fc83a differ diff --git a/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 b/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 new file mode 100644 index 00000000..1ba32903 Binary files /dev/null and b/LMC/Library/Artifacts/43/437f4821be412058fbb36617f65aedc7 differ diff --git a/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b b/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b new file mode 100644 index 00000000..935f7f50 Binary files /dev/null and b/LMC/Library/Artifacts/43/43c7119bdb3b9672488ba69160ca040b differ diff --git a/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 b/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 new file mode 100644 index 00000000..0260a3ff Binary files /dev/null and b/LMC/Library/Artifacts/48/489d1dcf8856f5cb0e860bb7facadfa5 differ diff --git a/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e b/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e new file mode 100644 index 00000000..7029958b Binary files /dev/null and b/LMC/Library/Artifacts/4a/4ad282f64dab490559264ddaac323d3e differ diff --git a/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b b/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b new file mode 100644 index 00000000..02599878 Binary files /dev/null and b/LMC/Library/Artifacts/4b/4b73ca47d8e584bc4a0a84f72979098b differ diff --git a/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 b/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 new file mode 100644 index 00000000..5ca5d6c2 Binary files /dev/null and b/LMC/Library/Artifacts/4c/4cd9d80d4d1379e2e7c8acca231a5206 differ diff --git a/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc b/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc new file mode 100644 index 00000000..8380c83c Binary files /dev/null and b/LMC/Library/Artifacts/4f/4f4f0e345532d093b39b5eb3884a75dc differ diff --git a/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f b/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f new file mode 100644 index 00000000..803d30ad Binary files /dev/null and b/LMC/Library/Artifacts/50/50f3ac602ac7a7b7c6a3bf6ec977832f differ diff --git a/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 b/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 new file mode 100644 index 00000000..a46f032d Binary files /dev/null and b/LMC/Library/Artifacts/59/5977991cd82dee3145a3226acc54d724 differ diff --git a/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b b/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b new file mode 100644 index 00000000..9efb0d19 Binary files /dev/null and b/LMC/Library/Artifacts/5a/5a24af0bab6d761dc58543e22819d52b differ diff --git a/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e b/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e new file mode 100644 index 00000000..8eed16fb Binary files /dev/null and b/LMC/Library/Artifacts/5b/5b2306e23c0a1ef287fa9523660d219e differ diff --git a/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c b/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c new file mode 100644 index 00000000..ad3cb91f Binary files /dev/null and b/LMC/Library/Artifacts/5b/5bb7759f668afd595fd8b0520f5a1f7c differ diff --git a/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f b/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f new file mode 100644 index 00000000..5465c131 Binary files /dev/null and b/LMC/Library/Artifacts/5c/5c8618a1185582d86d1ecc46f6b9578f differ diff --git a/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c b/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c new file mode 100644 index 00000000..f3fa9593 Binary files /dev/null and b/LMC/Library/Artifacts/5c/5ca20010ad252ad370d0b24ec629648c differ diff --git a/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 b/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 new file mode 100644 index 00000000..59caa020 Binary files /dev/null and b/LMC/Library/Artifacts/5f/5f940a818d46570b68751b221306dce7 differ diff --git a/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c b/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c new file mode 100644 index 00000000..0ce66ca3 Binary files /dev/null and b/LMC/Library/Artifacts/61/615d0e7d6bc66f242874166576fc593c differ diff --git a/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d b/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d new file mode 100644 index 00000000..28efe2c6 Binary files /dev/null and b/LMC/Library/Artifacts/61/6166409f1a0035682020094f0910820d differ diff --git a/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 b/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 new file mode 100644 index 00000000..6d88cf05 Binary files /dev/null and b/LMC/Library/Artifacts/61/617ff4e6d2177756c329eb550ebf6f81 differ diff --git a/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c b/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c new file mode 100644 index 00000000..3a1f8d48 Binary files /dev/null and b/LMC/Library/Artifacts/61/61c7a5b51c5765384138fab88d9fad1c differ diff --git a/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 b/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 new file mode 100644 index 00000000..06003c80 Binary files /dev/null and b/LMC/Library/Artifacts/61/61d99cd70b1bac9c04f81c85036d5497 differ diff --git a/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 b/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 new file mode 100644 index 00000000..dcb91a92 Binary files /dev/null and b/LMC/Library/Artifacts/62/623fb5e728bab73c2c62f2ccfd4e9c71 differ diff --git a/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b b/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b new file mode 100644 index 00000000..3f459b34 Binary files /dev/null and b/LMC/Library/Artifacts/62/629ef3ea5c86dd7fb98e05a5b449af8b differ diff --git a/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a b/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a new file mode 100644 index 00000000..cb4c14a1 Binary files /dev/null and b/LMC/Library/Artifacts/65/65b164564bf0d3f6e26bdb85f38d713a differ diff --git a/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 b/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 new file mode 100644 index 00000000..92976f63 Binary files /dev/null and b/LMC/Library/Artifacts/66/66779d7e4f7c82b2c5bb28e3c1452754 differ diff --git a/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 b/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 new file mode 100644 index 00000000..0f7c8b02 Binary files /dev/null and b/LMC/Library/Artifacts/6a/6a83acc860eb55848c8c6025ce0b1fc5 differ diff --git a/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 b/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 new file mode 100644 index 00000000..6096f94d Binary files /dev/null and b/LMC/Library/Artifacts/6a/6a9a49db1f35de8b8cf701265fe128b1 differ diff --git a/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 b/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 new file mode 100644 index 00000000..ec3284e6 Binary files /dev/null and b/LMC/Library/Artifacts/6c/6c2692097a94c5968291ab49491a2768 differ diff --git a/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed b/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed new file mode 100644 index 00000000..2ce0fd0d Binary files /dev/null and b/LMC/Library/Artifacts/6d/6dc0d4f5f4bbe935ad1a5b52780427ed differ diff --git a/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b b/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b new file mode 100644 index 00000000..d2a32259 Binary files /dev/null and b/LMC/Library/Artifacts/6e/6efbaf64202d8b6bad46d36f48e1362b differ diff --git a/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 b/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 new file mode 100644 index 00000000..3e94f2a8 Binary files /dev/null and b/LMC/Library/Artifacts/71/71c9f91befbef2e6938bf73f98886511 differ diff --git a/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da b/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da new file mode 100644 index 00000000..c6d6a717 Binary files /dev/null and b/LMC/Library/Artifacts/71/71dadcea9791f4d56d2c5c32ca62c9da differ diff --git a/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 b/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 new file mode 100644 index 00000000..6d1f951d Binary files /dev/null and b/LMC/Library/Artifacts/71/71df064e6bf7fda03a6a07ed598f24e0 differ diff --git a/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda b/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda new file mode 100644 index 00000000..d95e52e7 Binary files /dev/null and b/LMC/Library/Artifacts/74/74b2ee0ba05ca9462f0e8f7393617dda differ diff --git a/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 b/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 new file mode 100644 index 00000000..ef62fd5a Binary files /dev/null and b/LMC/Library/Artifacts/75/75ed3d0d469f8e7148f94a5084226758 differ diff --git a/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 b/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 new file mode 100644 index 00000000..751e2e2b Binary files /dev/null and b/LMC/Library/Artifacts/76/7606ec0e7a3b5b56f2e9fc19c43c3ed8 differ diff --git a/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 b/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 new file mode 100644 index 00000000..fea6fa54 Binary files /dev/null and b/LMC/Library/Artifacts/76/76e2e23feb808fe46989d4d7df025855 differ diff --git a/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 b/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 new file mode 100644 index 00000000..5ba29e39 Binary files /dev/null and b/LMC/Library/Artifacts/7e/7e0bc4158ec9d4a1f2c7da23e4cd0be5 differ diff --git a/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e b/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e new file mode 100644 index 00000000..3666e97e Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f2f88c021851d75a01ac11f5ff2aa5e differ diff --git a/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c b/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c new file mode 100644 index 00000000..1c2566d5 Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f8983b916f48de6e528f39942ab814c differ diff --git a/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 b/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 new file mode 100644 index 00000000..f7b84158 Binary files /dev/null and b/LMC/Library/Artifacts/7f/7f96fb27e251f1e5529a1bd621720d87 differ diff --git a/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 b/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 new file mode 100644 index 00000000..a2283c6c Binary files /dev/null and b/LMC/Library/Artifacts/81/8179cf5566229ec8a6c49a287619daa0 differ diff --git a/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 b/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 new file mode 100644 index 00000000..9555ba82 Binary files /dev/null and b/LMC/Library/Artifacts/82/82eb8653b9237e4db9de1e67d2a82643 differ diff --git a/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 b/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 new file mode 100644 index 00000000..e512b431 Binary files /dev/null and b/LMC/Library/Artifacts/83/8381586aff7c4a67e0be1ad1fae8e1f2 differ diff --git a/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 b/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 new file mode 100644 index 00000000..07f0caf9 Binary files /dev/null and b/LMC/Library/Artifacts/84/84811eaa2279773db8085549e65716b0 differ diff --git a/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f b/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f new file mode 100644 index 00000000..dbc7c517 Binary files /dev/null and b/LMC/Library/Artifacts/84/8497aa7c162cd73b18a9cb791dc9547f differ diff --git a/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f b/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f new file mode 100644 index 00000000..a5bf0b56 Binary files /dev/null and b/LMC/Library/Artifacts/86/8681ab2ceb3ede41929c88f980d2fc4f differ diff --git a/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e b/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e new file mode 100644 index 00000000..b21e161e Binary files /dev/null and b/LMC/Library/Artifacts/86/86d21f44d4865a167df3754e2b889f3e differ diff --git a/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 b/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 new file mode 100644 index 00000000..3670d996 Binary files /dev/null and b/LMC/Library/Artifacts/87/8776aa63266bf935d798d6d4759ab7a5 differ diff --git a/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 b/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 new file mode 100644 index 00000000..b22e7aaa Binary files /dev/null and b/LMC/Library/Artifacts/87/8798ac6b19fe0d18cf12a73281e4d216 differ diff --git a/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 b/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 new file mode 100644 index 00000000..f3b2f2ee Binary files /dev/null and b/LMC/Library/Artifacts/88/8841a187c9b5d6de35f48b7b8b9fb235 differ diff --git a/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 b/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 new file mode 100644 index 00000000..eafc42f6 Binary files /dev/null and b/LMC/Library/Artifacts/88/88ef077014e7e78245164e91e91a23c4 differ diff --git a/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d b/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d new file mode 100644 index 00000000..ed96d3e1 Binary files /dev/null and b/LMC/Library/Artifacts/88/88f11638b607eb72245e6906b9d9019d differ diff --git a/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df b/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df new file mode 100644 index 00000000..eecfe4d0 Binary files /dev/null and b/LMC/Library/Artifacts/89/89f12f44887aee51b0e10cba987ee9df differ diff --git a/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 b/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 new file mode 100644 index 00000000..b851e5bb Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d1cd2582c12410bb4226fa9087c49c9 differ diff --git a/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 b/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 new file mode 100644 index 00000000..6207fac1 Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d470001bde8e5e50e36eae587cfac07 differ diff --git a/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b b/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b new file mode 100644 index 00000000..6426f0eb Binary files /dev/null and b/LMC/Library/Artifacts/8d/8d54fd587a021dfddd60441168e3457b differ diff --git a/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c b/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c new file mode 100644 index 00000000..263cc9ba Binary files /dev/null and b/LMC/Library/Artifacts/8e/8e510af9f55cf58fa5971d38efe8032c differ diff --git a/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 b/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 new file mode 100644 index 00000000..201a71cc Binary files /dev/null and b/LMC/Library/Artifacts/8f/8fabf91cda06b1552447fe6817032d32 differ diff --git a/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe b/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe new file mode 100644 index 00000000..b22c962e Binary files /dev/null and b/LMC/Library/Artifacts/8f/8fd7d5a9e7cdd971a7bf7e3ecf579bfe differ diff --git a/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f b/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f new file mode 100644 index 00000000..b831936e Binary files /dev/null and b/LMC/Library/Artifacts/92/922b4c1589136537a0cc09a2f3301c3f differ diff --git a/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 b/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 new file mode 100644 index 00000000..0a430e21 Binary files /dev/null and b/LMC/Library/Artifacts/94/9499416c2d68e9db576ae5ef8fb0b957 differ diff --git a/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 b/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 new file mode 100644 index 00000000..74a0050c Binary files /dev/null and b/LMC/Library/Artifacts/95/95449d99e2908e03cba4f5808e264b27 differ diff --git a/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 b/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 new file mode 100644 index 00000000..cd6ba48c Binary files /dev/null and b/LMC/Library/Artifacts/98/98ae7db8b6f7e7de067959dcb6519d78 differ diff --git a/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 b/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 new file mode 100644 index 00000000..027e7db4 Binary files /dev/null and b/LMC/Library/Artifacts/99/99df231c1c4b15f79ee9b6612aec3ad6 differ diff --git a/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 b/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 new file mode 100644 index 00000000..dd6e0dbf Binary files /dev/null and b/LMC/Library/Artifacts/9a/9a4c2e1f52f39bd14d5cb76a3d27e4e5 differ diff --git a/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 b/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 new file mode 100644 index 00000000..fdc39434 Binary files /dev/null and b/LMC/Library/Artifacts/9c/9c670db2023ca4eef02b7bdb2ecd9be3 differ diff --git a/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 b/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 new file mode 100644 index 00000000..bb573814 Binary files /dev/null and b/LMC/Library/Artifacts/9d/9d58f63d60d3bf263acf332cf2d55324 differ diff --git a/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 b/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 new file mode 100644 index 00000000..dada7c95 Binary files /dev/null and b/LMC/Library/Artifacts/a1/a161a3d2150f5a8f954891ec82a20652 differ diff --git a/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 b/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 new file mode 100644 index 00000000..8de2f69c Binary files /dev/null and b/LMC/Library/Artifacts/aa/aa224ff7585e39c55b420940bde40842 differ diff --git a/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f b/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f new file mode 100644 index 00000000..92b152cd Binary files /dev/null and b/LMC/Library/Artifacts/ad/adb5711c478c97b7ed793de0cdf7ff2f differ diff --git a/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 b/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 new file mode 100644 index 00000000..3c43a1ec Binary files /dev/null and b/LMC/Library/Artifacts/ad/adb936620ef357472e1913742df584c6 differ diff --git a/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 b/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 new file mode 100644 index 00000000..ee9c2d73 Binary files /dev/null and b/LMC/Library/Artifacts/ae/ae15abedc71bf8e64f87cae8e3a3a057 differ diff --git a/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 b/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 new file mode 100644 index 00000000..52ae4fb1 Binary files /dev/null and b/LMC/Library/Artifacts/b1/b1c7fc9678944cecb2edb9cb54f03024 differ diff --git a/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb b/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb new file mode 100644 index 00000000..ef4babef Binary files /dev/null and b/LMC/Library/Artifacts/b2/b233e611d2b58a05157a4ca3f30f9dfb differ diff --git a/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f b/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f new file mode 100644 index 00000000..f2d127dd Binary files /dev/null and b/LMC/Library/Artifacts/b2/b29d3922c2e29b3bb5318ff02766235f differ diff --git a/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 b/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 new file mode 100644 index 00000000..3dfef760 Binary files /dev/null and b/LMC/Library/Artifacts/b2/b2e6951c5286a77ee6f1c33dc3691721 differ diff --git a/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff b/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff new file mode 100644 index 00000000..38bdb63f Binary files /dev/null and b/LMC/Library/Artifacts/b3/b3ce41f503a6273fa02bd17cf76e6aff differ diff --git a/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e b/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e new file mode 100644 index 00000000..820b8e78 Binary files /dev/null and b/LMC/Library/Artifacts/b5/b5997e248b2fafe4f4efcc35f0f31d2e differ diff --git a/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da b/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da new file mode 100644 index 00000000..9d4e3a21 Binary files /dev/null and b/LMC/Library/Artifacts/b5/b5ac1bc6ea8183b8b54bf5005bcee1da differ diff --git a/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da b/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da new file mode 100644 index 00000000..0e9a0ba8 Binary files /dev/null and b/LMC/Library/Artifacts/b7/b78fd30ad41f4f7bfbc78b5d724155da differ diff --git a/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd b/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd new file mode 100644 index 00000000..e8ec878d Binary files /dev/null and b/LMC/Library/Artifacts/b8/b8f94396fee6277c0ceadc9a480afdcd differ diff --git a/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 b/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 new file mode 100644 index 00000000..d84de87c Binary files /dev/null and b/LMC/Library/Artifacts/ba/ba8a8a6e5e2888cc4ec0c2f521cd0504 differ diff --git a/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 b/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 new file mode 100644 index 00000000..dcbb0eea Binary files /dev/null and b/LMC/Library/Artifacts/ba/baa547c29d77213379c4d97968f53441 differ diff --git a/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 b/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 new file mode 100644 index 00000000..e476cb7c Binary files /dev/null and b/LMC/Library/Artifacts/bc/bc5bf632557a3a7a4b2e7fb0ded5ff69 differ diff --git a/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 b/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 new file mode 100644 index 00000000..b8c42576 Binary files /dev/null and b/LMC/Library/Artifacts/bc/bcc2832b3bd79639c79d38d770806bc5 differ diff --git a/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 b/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 new file mode 100644 index 00000000..c0ebcca4 Binary files /dev/null and b/LMC/Library/Artifacts/bd/bd5ef176c7f9249d89fdaf99d222d575 differ diff --git a/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee b/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee new file mode 100644 index 00000000..e14ccecf Binary files /dev/null and b/LMC/Library/Artifacts/bd/bdb55d45a40620762a4be604ce91c3ee differ diff --git a/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 b/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 new file mode 100644 index 00000000..fd128dbc Binary files /dev/null and b/LMC/Library/Artifacts/be/bee84b30a0bea6e123c0c6e567411071 differ diff --git a/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c b/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c new file mode 100644 index 00000000..d6dd659d Binary files /dev/null and b/LMC/Library/Artifacts/bf/bf3724279b02940fd47a838a526c7b7c differ diff --git a/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 b/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 new file mode 100644 index 00000000..4117c6e6 Binary files /dev/null and b/LMC/Library/Artifacts/bf/bf9636310a085a29862d231b3bfde793 differ diff --git a/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd b/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd new file mode 100644 index 00000000..97d63bb2 Binary files /dev/null and b/LMC/Library/Artifacts/c0/c03fa20bc530cdb7cb3aa6ed2ca4c4bd differ diff --git a/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 b/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 new file mode 100644 index 00000000..c3a5e231 Binary files /dev/null and b/LMC/Library/Artifacts/c0/c0f618627198006d8ca4c91688136121 differ diff --git a/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d b/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d new file mode 100644 index 00000000..752e373e Binary files /dev/null and b/LMC/Library/Artifacts/c2/c2644a5418d5e70dea231fc686b3655d differ diff --git a/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b b/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b new file mode 100644 index 00000000..708a23a9 Binary files /dev/null and b/LMC/Library/Artifacts/c4/c4dda674bdbe17e039c7d67062e4e34b differ diff --git a/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 b/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 new file mode 100644 index 00000000..625610d0 Binary files /dev/null and b/LMC/Library/Artifacts/c6/c65b4fe319906739bad5245218dbcef0 differ diff --git a/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 b/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 new file mode 100644 index 00000000..7c64e8f5 Binary files /dev/null and b/LMC/Library/Artifacts/c8/c84379549641ad318f355c0f9f22ffb5 differ diff --git a/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa b/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa new file mode 100644 index 00000000..7acd7fc3 Binary files /dev/null and b/LMC/Library/Artifacts/c8/c8e99f8202bfe4707876a71ed04f9baa differ diff --git a/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 b/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 new file mode 100644 index 00000000..e94a9bf2 Binary files /dev/null and b/LMC/Library/Artifacts/ca/ca55aa0fcdccbea63f56b4b9d67250b0 differ diff --git a/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a b/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a new file mode 100644 index 00000000..52541a5e Binary files /dev/null and b/LMC/Library/Artifacts/ca/ca8f7cd3e6a0e3225c3a1a60d6aeb22a differ diff --git a/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf b/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf new file mode 100644 index 00000000..1cd80cfb Binary files /dev/null and b/LMC/Library/Artifacts/ca/cacf59492163136c3b716025d6b9fcaf differ diff --git a/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 b/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 new file mode 100644 index 00000000..2f59bf10 Binary files /dev/null and b/LMC/Library/Artifacts/cd/cdc1eb43e6a0fc01b23b88ac1df8b4e7 differ diff --git a/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 b/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 new file mode 100644 index 00000000..a5da525a Binary files /dev/null and b/LMC/Library/Artifacts/cf/cf81af375862721dab6bcfd211a37740 differ diff --git a/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 b/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 new file mode 100644 index 00000000..cd2107d4 Binary files /dev/null and b/LMC/Library/Artifacts/d0/d00aafc3d447cba17228ee3e9e1f3964 differ diff --git a/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a b/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a new file mode 100644 index 00000000..d9a02894 Binary files /dev/null and b/LMC/Library/Artifacts/d0/d0c6dbd4a9c0c4194f1a6844931e472a differ diff --git a/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 b/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 new file mode 100644 index 00000000..9b99678d Binary files /dev/null and b/LMC/Library/Artifacts/d1/d1da081807a20f58dfd07bcfd1bba715 differ diff --git a/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 b/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 new file mode 100644 index 00000000..30c49613 Binary files /dev/null and b/LMC/Library/Artifacts/d2/d2a35b67df00eac4a20f1ee4a2de3f70 differ diff --git a/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d b/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d new file mode 100644 index 00000000..bacb71aa Binary files /dev/null and b/LMC/Library/Artifacts/d3/d350a8905c3bc5c5336a4eeefa33b83d differ diff --git a/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 b/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 new file mode 100644 index 00000000..682998c2 Binary files /dev/null and b/LMC/Library/Artifacts/d6/d64bb22382cad8cc3bca965bbf1943b5 differ diff --git a/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 b/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 new file mode 100644 index 00000000..4347538c Binary files /dev/null and b/LMC/Library/Artifacts/d7/d7437f8acb614ff8b07649698e91d9a6 differ diff --git a/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 b/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 new file mode 100644 index 00000000..c8570ab9 Binary files /dev/null and b/LMC/Library/Artifacts/d7/d75c81abb486523b03b328305db86890 differ diff --git a/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 b/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 new file mode 100644 index 00000000..8d060a18 Binary files /dev/null and b/LMC/Library/Artifacts/d7/d7e256391e15fe5a6b11019ee03961d6 differ diff --git a/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 b/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 new file mode 100644 index 00000000..1bc5b87a Binary files /dev/null and b/LMC/Library/Artifacts/da/da06badde97483d8ecb666141ee24ce6 differ diff --git a/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 b/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 new file mode 100644 index 00000000..1265ebfc Binary files /dev/null and b/LMC/Library/Artifacts/da/dadec59cd5a26549282dda71b8699020 differ diff --git a/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 b/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 new file mode 100644 index 00000000..70acdcf4 Binary files /dev/null and b/LMC/Library/Artifacts/dc/dc2658709b93e79bf39c2986a2316c98 differ diff --git a/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd b/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd new file mode 100644 index 00000000..5bea217e Binary files /dev/null and b/LMC/Library/Artifacts/dd/dd1bc4a2bafd6ef8070ee2fe252685dd differ diff --git a/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 b/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 new file mode 100644 index 00000000..7d2b19a2 Binary files /dev/null and b/LMC/Library/Artifacts/df/dfe07208d96d324dc63f090ced0379e5 differ diff --git a/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 b/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 new file mode 100644 index 00000000..db5ee97b Binary files /dev/null and b/LMC/Library/Artifacts/e1/e10a2b06a24e93e803d4f1b428ff9771 differ diff --git a/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b b/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b new file mode 100644 index 00000000..b3bf1f10 Binary files /dev/null and b/LMC/Library/Artifacts/e1/e1555f02e1c001768ae444962a7de59b differ diff --git a/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 b/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 new file mode 100644 index 00000000..5b66af8f Binary files /dev/null and b/LMC/Library/Artifacts/e1/e1b1e3fb0b98ba0085af38f79fb84453 differ diff --git a/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 b/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 new file mode 100644 index 00000000..0be929de Binary files /dev/null and b/LMC/Library/Artifacts/e2/e294d9de78b18585e38eb278d7ade213 differ diff --git a/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 b/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 new file mode 100644 index 00000000..052f72d7 Binary files /dev/null and b/LMC/Library/Artifacts/e5/e58d8369b65b84a75416cfa0e40d9d34 differ diff --git a/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd b/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd new file mode 100644 index 00000000..baa87cfb Binary files /dev/null and b/LMC/Library/Artifacts/e7/e7f6dcbbfde4c308b8db7b71ea5810dd differ diff --git a/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 b/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 new file mode 100644 index 00000000..408a1a5d Binary files /dev/null and b/LMC/Library/Artifacts/ed/ed024c8cc0217d7bc20bc6a06290dec0 differ diff --git a/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 b/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 new file mode 100644 index 00000000..b7ecb44a Binary files /dev/null and b/LMC/Library/Artifacts/f2/f2dad3855223a493be0b6501040b6c80 differ diff --git a/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 b/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 new file mode 100644 index 00000000..714b8616 Binary files /dev/null and b/LMC/Library/Artifacts/f2/f2efde337cbc468cf5d74e559c607c69 differ diff --git a/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f b/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f new file mode 100644 index 00000000..ce7387ed Binary files /dev/null and b/LMC/Library/Artifacts/f3/f3d9ccd9b536b681947a533a1f54305f differ diff --git a/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a b/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a new file mode 100644 index 00000000..e9c25aff Binary files /dev/null and b/LMC/Library/Artifacts/f5/f5df2a8b6d6a48c07766f8022d47b46a differ diff --git a/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 b/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 new file mode 100644 index 00000000..ae1d8267 Binary files /dev/null and b/LMC/Library/Artifacts/f7/f7cf93c35d9113f08c03eba8221e79a2 differ diff --git a/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 b/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 new file mode 100644 index 00000000..3d27d1f3 Binary files /dev/null and b/LMC/Library/Artifacts/f9/f90352d8eb98464ac6d2068aa16a6f48 differ diff --git a/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 b/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 new file mode 100644 index 00000000..dd463234 Binary files /dev/null and b/LMC/Library/Artifacts/fa/fab985cccc44c375348b8993340591f8 differ diff --git a/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 b/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 new file mode 100644 index 00000000..8b7d2d76 Binary files /dev/null and b/LMC/Library/Artifacts/fb/fb70899c8baa9151d6532f5f9ee35ff4 differ diff --git a/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 b/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 new file mode 100644 index 00000000..44366680 Binary files /dev/null and b/LMC/Library/Artifacts/fc/fc31f33cac3964a76aa22be48fd05f44 differ diff --git a/LMC/Library/Bee/TundraBuildState.state b/LMC/Library/Bee/TundraBuildState.state index 18915565..e1d416fc 100644 Binary files a/LMC/Library/Bee/TundraBuildState.state and b/LMC/Library/Bee/TundraBuildState.state differ diff --git a/LMC/Library/Bee/TundraBuildState.state.map b/LMC/Library/Bee/TundraBuildState.state.map index a945eb33..1e0a5cc2 100644 Binary files a/LMC/Library/Bee/TundraBuildState.state.map and b/LMC/Library/Bee/TundraBuildState.state.map differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll index 416cd71a..934c9c15 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb index 0b58661f..642870a6 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll index 5a3c08af..911f9835 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll differ diff --git a/LMC/Library/Bee/backend1.traceevents b/LMC/Library/Bee/backend1.traceevents index db5e13fa..3c2e8c0c 100644 --- a/LMC/Library/Bee/backend1.traceevents +++ b/LMC/Library/Bee/backend1.traceevents @@ -1,699 +1,698 @@ { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1689919801127787, "dur":77, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801127898, "dur":1692, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801129602, "dur":339, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801130025, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801130883, "dur":83, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801131539, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_E49832A1C5CC5CC3.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801133947, "dur":68, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801134111, "dur":62, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp2" }} -,{ "pid":12345, "tid":0, "ts":1689919801134621, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":0, "ts":1689919801137541, "dur":889, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":0, "ts":1689919801138730, "dur":208, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2" }} -,{ "pid":12345, "tid":0, "ts":1689919801138940, "dur":61, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801139440, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801130618, "dur":12344, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801142970, "dur":381086, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524059, "dur":360, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524542, "dur":62, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524617, "dur":739, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1689919801130510, "dur":12468, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801142998, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143170, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_0214FE25B23C7DED.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143285, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll" }} -,{ "pid":12345, "tid":1, "ts":1689919801143284, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143698, "dur":1159, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_CD6842F2F41DDFA6.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801144890, "dur":59, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1689919801144957, "dur":1006, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1689919801145963, "dur":3379, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.State\\StateExitReason.cs" }} -,{ "pid":12345, "tid":1, "ts":1689919801145963, "dur":3624, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801149588, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801149768, "dur":529, "ph":"X", "name": "File", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.dll" }} -,{ "pid":12345, "tid":1, "ts":1689919801149734, "dur":811, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801150545, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801150919, "dur":482, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801151401, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801151998, "dur":545, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689919801152703, "dur":281, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801152985, "dur":510, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153495, "dur":98, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153635, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153733, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153905, "dur":231, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154136, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154494, "dur":499, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154993, "dur":136, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155130, "dur":368, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155498, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155871, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156254, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156645, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156925, "dur":367230, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801130547, "dur":12458, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801143009, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801143153, "dur":634, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5F4C3310920844E1.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801143804, "dur":2110, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_664D4C91807F8DF4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801145916, "dur":3475, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801145916, "dur":4046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801149962, "dur":295, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801150258, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801150925, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801151429, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801151730, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801151856, "dur":506, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":2, "ts":1689919801151855, "dur":996, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689919801152851, "dur":720, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801153588, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801153794, "dur":346, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801154449, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageReporterListener.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801154546, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Events\\SessionMode.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801154154, "dur":570, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689919801155170, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801155284, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801155885, "dur":357, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156242, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156562, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156633, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156947, "dur":367162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801130581, "dur":12431, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801143178, "dur":163, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_5C7E93297DF7ED6C.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143627, "dur":50, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_1CF7D2088BFDF0A4.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143678, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll" }} -,{ "pid":12345, "tid":3, "ts":1689919801143677, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_8A18AA472BD1B355.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143764, "dur":472, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_8A18AA472BD1B355.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801144239, "dur":302, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":3, "ts":1689919801144237, "dur":515, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801144776, "dur":1146, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801145924, "dur":4071, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} -,{ "pid":12345, "tid":3, "ts":1689919801145924, "dur":4354, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801150278, "dur":665, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801150943, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801151418, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152243, "dur":132, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152376, "dur":242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152618, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152700, "dur":285, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152985, "dur":498, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153483, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153723, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153942, "dur":175, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154117, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154510, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154968, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155142, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155475, "dur":404, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155879, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156249, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156651, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156935, "dur":367188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801130599, "dur":12445, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801143172, "dur":1116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_89F882D7BFAFB049.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689919801144296, "dur":523, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801144820, "dur":298, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp2" }} -,{ "pid":12345, "tid":4, "ts":1689919801145342, "dur":609, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} -,{ "pid":12345, "tid":4, "ts":1689919801145952, "dur":4298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689919801150295, "dur":490, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1689919801150878, "dur":552, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801151431, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152252, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152372, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152739, "dur":165, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152908, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153014, "dur":759, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153773, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153939, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154174, "dur":347, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154521, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154958, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155043, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155174, "dur":809, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155983, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156222, "dur":441, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156663, "dur":242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156946, "dur":367184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801130621, "dur":12559, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801143236, "dur":68, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_76A56C3B97129D6B.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801143306, "dur":451, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801143305, "dur":453, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_E922729EEA99648E.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801143766, "dur":495, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_E922729EEA99648E.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801144263, "dur":553, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801144262, "dur":556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801144826, "dur":274, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801145144, "dur":56, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} -,{ "pid":12345, "tid":5, "ts":1689919801145396, "dur":190, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801145586, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801145718, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146035, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146189, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146352, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146519, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146653, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146786, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146922, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147050, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147184, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147329, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147466, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147608, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147748, "dur":1850, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Optimization\\Action_5.cs" }} -,{ "pid":12345, "tid":5, "ts":1689919801147739, "dur":2608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801150347, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801150943, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801151429, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801151765, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801151839, "dur":425, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801152365, "dur":347, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801152950, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801152276, "dur":867, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689919801153143, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801153266, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801153811, "dur":599, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689919801154485, "dur":653, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801155250, "dur":652, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801155902, "dur":363, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156265, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156589, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156654, "dur":317, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156971, "dur":367059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801130725, "dur":12485, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801143295, "dur":447, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} -,{ "pid":12345, "tid":6, "ts":1689919801143287, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801143751, "dur":455, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801144210, "dur":265, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801144207, "dur":270, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801144632, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} -,{ "pid":12345, "tid":6, "ts":1689919801144779, "dur":155, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2" }} -,{ "pid":12345, "tid":6, "ts":1689919801144947, "dur":440, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1689919801145388, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801145572, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801145984, "dur":3990, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\DirectorNamedColor.cs" }} -,{ "pid":12345, "tid":6, "ts":1689919801145716, "dur":4275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801149991, "dur":535, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801150526, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801150960, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801151388, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801151884, "dur":188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801152369, "dur":350, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801152962, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.CompilerServices.VisualC.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801153295, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\VersionPair.cs" }} -,{ "pid":12345, "tid":6, "ts":1689919801152123, "dur":1278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801153401, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801153570, "dur":642, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801154217, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801154490, "dur":665, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801155173, "dur":86, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801155260, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801155378, "dur":642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156109, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156200, "dur":369, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156611, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156673, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156915, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156979, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801157563, "dur":301647, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801460444, "dur":62458, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801460443, "dur":62461, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801522929, "dur":1045, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801130744, "dur":12479, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801143292, "dur":485, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801143291, "dur":487, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689919801143785, "dur":492, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689919801144286, "dur":537, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801144824, "dur":286, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1689919801145376, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145508, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145670, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145831, "dur":3773, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Actions\\ClipAction.cs" }} -,{ "pid":12345, "tid":7, "ts":1689919801145805, "dur":4074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801149880, "dur":346, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801150226, "dur":723, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801150950, "dur":416, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801151366, "dur":870, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152236, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152378, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152732, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152967, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801152966, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801153074, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153173, "dur":600, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153773, "dur":159, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153932, "dur":248, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801154180, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801154515, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801155231, "dur":675, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801155906, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156267, "dur":315, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156582, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156669, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156908, "dur":303538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801460450, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801460449, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801460592, "dur":931, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801461528, "dur":62562, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801130787, "dur":12530, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801143330, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll" }} -,{ "pid":12345, "tid":8, "ts":1689919801143322, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_92D3D9EBA736C362.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801143391, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801143651, "dur":222, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_4B0DFA523C048167.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801143875, "dur":275, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll" }} -,{ "pid":12345, "tid":8, "ts":1689919801143874, "dur":277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801144158, "dur":1741, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801145901, "dur":2064, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} -,{ "pid":12345, "tid":8, "ts":1689919801145901, "dur":2199, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148100, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148251, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148382, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148522, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148659, "dur":608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149268, "dur":328, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149597, "dur":160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149757, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149910, "dur":611, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801150521, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801150955, "dur":408, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801151381, "dur":847, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152229, "dur":149, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152378, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152720, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152974, "dur":850, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801153824, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801153923, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801154186, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801154509, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801155175, "dur":753, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801155929, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156229, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156657, "dur":303, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156960, "dur":367122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801130822, "dur":12503, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801143589, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801143691, "dur":509, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_2633F89DBA36C760.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689919801144202, "dur":278, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} -,{ "pid":12345, "tid":9, "ts":1689919801144201, "dur":281, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689919801144791, "dur":1144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":9, "ts":1689919801145935, "dur":4125, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} -,{ "pid":12345, "tid":9, "ts":1689919801145935, "dur":4381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801150316, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801150897, "dur":489, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801151387, "dur":984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152371, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152745, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152967, "dur":860, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801153827, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801153894, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154007, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154173, "dur":350, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154523, "dur":712, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801155235, "dur":638, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801155873, "dur":285, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156158, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156619, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156942, "dur":367219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801130862, "dur":12867, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801143734, "dur":665, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801144424, "dur":1467, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801145892, "dur":2077, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} -,{ "pid":12345, "tid":10, "ts":1689919801145892, "dur":2336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148228, "dur":139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148367, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148497, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148689, "dur":607, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\IncomingChangesNotifier.cs" }} -,{ "pid":12345, "tid":10, "ts":1689919801148629, "dur":740, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149369, "dur":105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149474, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149613, "dur":248, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149861, "dur":291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801150192, "dur":713, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801150905, "dur":472, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801151377, "dur":494, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801151872, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801151956, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689919801152331, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801152684, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801152967, "dur":530, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801153498, "dur":178, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801153676, "dur":424, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801154100, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801154481, "dur":523, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155005, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155098, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155232, "dur":644, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155876, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156113, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801156221, "dur":253, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689919801156551, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156642, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156910, "dur":367140, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801130891, "dur":12898, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801143815, "dur":489, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_4368F8031B7A5340.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801144311, "dur":518, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801144829, "dur":53, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1689919801144895, "dur":93, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2" }} -,{ "pid":12345, "tid":11, "ts":1689919801145400, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145551, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145702, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145836, "dur":304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146140, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146304, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146459, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146600, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146729, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146856, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146978, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147114, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147247, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147379, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147520, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147652, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147798, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147934, "dur":156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148090, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148230, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148357, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148484, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148613, "dur":611, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149224, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149355, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149496, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149658, "dur":148, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149807, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149992, "dur":292, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801150284, "dur":617, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801150901, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801151377, "dur":492, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801151870, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801151959, "dur":817, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689919801152833, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801152953, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll" }} -,{ "pid":12345, "tid":11, "ts":1689919801153145, "dur":291, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":11, "ts":1689919801152916, "dur":742, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689919801153696, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154092, "dur":400, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154492, "dur":494, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154986, "dur":122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155109, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155251, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155853, "dur":345, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156199, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156573, "dur":58, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156631, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156921, "dur":367126, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801130931, "dur":12878, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801143836, "dur":499, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_11E676DD84C6B6CA.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801144569, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689919801144781, "dur":380, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1689919801145381, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145512, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145654, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145813, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146109, "dur":191, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146301, "dur":166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146467, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146611, "dur":186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146797, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146932, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147084, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147248, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147402, "dur":148, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147551, "dur":212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147763, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147891, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148074, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148220, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148356, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148481, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148615, "dur":586, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149201, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149338, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149466, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149611, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149754, "dur":608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801150362, "dur":497, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801150881, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801151389, "dur":377, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801151767, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801151832, "dur":802, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801152640, "dur":608, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689919801153248, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801153371, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801153460, "dur":578, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689919801154080, "dur":431, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801154511, "dur":440, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801154965, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155119, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155175, "dur":712, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155888, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156093, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156209, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156562, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156641, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156920, "dur":367126, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801130946, "dur":12868, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801143846, "dur":522, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_F21F01A360D39C6F.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801144424, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Dependencies\\DotNetZip\\Unity.VisualScripting.IonicZip.dll" }} -,{ "pid":12345, "tid":13, "ts":1689919801144423, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801144505, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801144746, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689919801144881, "dur":54, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689919801145106, "dur":963, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146082, "dur":388, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146470, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146608, "dur":139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146748, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146880, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147022, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147225, "dur":150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147376, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147511, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147642, "dur":166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147945, "dur":1874, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Listeners\\MonoBehaviour\\UnityOnMouseUpAsButtonMessageListener.cs" }} -,{ "pid":12345, "tid":13, "ts":1689919801147808, "dur":2058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801149867, "dur":598, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801150466, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801150863, "dur":547, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801151410, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801151731, "dur":200, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801151954, "dur":633, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} -,{ "pid":12345, "tid":13, "ts":1689919801152588, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801152694, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801152991, "dur":477, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153469, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153730, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153925, "dur":198, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154123, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154502, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154975, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155136, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155476, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155879, "dur":373, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156253, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156638, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156939, "dur":367178, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801131014, "dur":12857, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801144087, "dur":1271, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_3CC371F904BF0C12.mvfrm" }} -,{ "pid":12345, "tid":14, "ts":1689919801145438, "dur":191, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801145629, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801145769, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146077, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146245, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146402, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146561, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146687, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146816, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146938, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801147156, "dur":2823, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_4.cs" }} -,{ "pid":12345, "tid":14, "ts":1689919801147061, "dur":3000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150099, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150232, "dur":699, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150931, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801151398, "dur":953, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152351, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152629, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152697, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152989, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153475, "dur":248, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153724, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153924, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154130, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154500, "dur":478, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154979, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155131, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155485, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155867, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156260, "dur":337, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156621, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156950, "dur":367115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801131040, "dur":12835, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801143896, "dur":1027, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801144923, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_CDD7AA2F334AE808.mvfrm" }} -,{ "pid":12345, "tid":15, "ts":1689919801145072, "dur":785, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":15, "ts":1689919801145857, "dur":390, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801146248, "dur":212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801146523, "dur":552, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Math\\Vector4\\Vector4Divide.cs" }} -,{ "pid":12345, "tid":15, "ts":1689919801146460, "dur":772, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147232, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147365, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147499, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147641, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147777, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147908, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148048, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148187, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148315, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148443, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148579, "dur":606, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149185, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149317, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149458, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149636, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149782, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149927, "dur":435, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150362, "dur":481, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150850, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150948, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801151417, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801151813, "dur":697, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":15, "ts":1689919801152511, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801152846, "dur":200, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.dll" }} -,{ "pid":12345, "tid":15, "ts":1689919801152587, "dur":753, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":15, "ts":1689919801153421, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801153737, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801153944, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154111, "dur":403, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154514, "dur":453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154967, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801155233, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801155888, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156238, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156572, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156627, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156948, "dur":367164, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801131085, "dur":12793, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801143920, "dur":427, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801144420, "dur":1441, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":16, "ts":1689919801145862, "dur":1896, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} -,{ "pid":12345, "tid":16, "ts":1689919801145862, "dur":2022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801147950, "dur":2069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Listeners\\MonoBehaviour\\UnityOnCollisionExit2DMessageListener.cs" }} -,{ "pid":12345, "tid":16, "ts":1689919801147884, "dur":2411, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801150296, "dur":594, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801150890, "dur":498, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801151389, "dur":979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152368, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152674, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152978, "dur":480, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153458, "dur":105, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153635, "dur":73, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153708, "dur":158, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153891, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":16, "ts":1689919801154051, "dur":985, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":16, "ts":1689919801155086, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801155231, "dur":653, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801155884, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156101, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156630, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156931, "dur":367114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801131134, "dur":12797, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801144054, "dur":134, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_055771F30FC741C8.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144190, "dur":244, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll" }} -,{ "pid":12345, "tid":17, "ts":1689919801144189, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144458, "dur":397, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\EditorAssetResources\\Unity.VisualScripting.TextureAssets.dll" }} -,{ "pid":12345, "tid":17, "ts":1689919801144457, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144892, "dur":991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2" }} -,{ "pid":12345, "tid":17, "ts":1689919801145884, "dur":2270, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\RiderScriptEditorDataPersisted.cs" }} -,{ "pid":12345, "tid":17, "ts":1689919801148155, "dur":1593, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\RiderScriptEditorData.cs" }} -,{ "pid":12345, "tid":17, "ts":1689919801145884, "dur":3996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801149880, "dur":290, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801150176, "dur":732, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801150908, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801151375, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801151890, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801152037, "dur":463, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":17, "ts":1689919801152617, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801152681, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801152973, "dur":496, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801153470, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801153707, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154088, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154497, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154984, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155109, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155243, "dur":621, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155865, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156177, "dur":407, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156608, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156943, "dur":367084, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801131156, "dur":12911, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801144117, "dur":743, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_88E5B84BFC4A9BCE.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689919801144908, "dur":997, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} -,{ "pid":12345, "tid":18, "ts":1689919801145905, "dur":4069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} -,{ "pid":12345, "tid":18, "ts":1689919801145905, "dur":4526, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150431, "dur":415, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150846, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150913, "dur":452, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801151365, "dur":780, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152146, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152374, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152672, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152979, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801153447, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801153659, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801154103, "dur":350, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801154469, "dur":554, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155108, "dur":155, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155263, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155862, "dur":326, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156188, "dur":395, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156598, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156954, "dur":367070, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801131173, "dur":12925, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801144139, "dur":1801, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D9BB49866713720B.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801145943, "dur":4388, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801150347, "dur":488, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801150881, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801150951, "dur":375, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801151374, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801151436, "dur":239, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801151725, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801151853, "dur":306, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll" }} -,{ "pid":12345, "tid":19, "ts":1689919801152414, "dur":298, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll" }} -,{ "pid":12345, "tid":19, "ts":1689919801153144, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsIgnoreAttribute.cs" }} -,{ "pid":12345, "tid":19, "ts":1689919801151811, "dur":2011, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801153890, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801153974, "dur":780, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801155258, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801155449, "dur":316, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801155876, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156147, "dur":472, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156620, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156932, "dur":367106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801131216, "dur":12908, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801144146, "dur":1727, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_5F6CDEBA52F30836.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801145875, "dur":2096, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":20, "ts":1689919801145875, "dur":2299, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148175, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148333, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148544, "dur":620, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149164, "dur":260, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149424, "dur":459, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149884, "dur":449, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801150333, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801150893, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801151401, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801151871, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801151949, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801152034, "dur":430, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689919801152500, "dur":874, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153436, "dur":298, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153735, "dur":159, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153894, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154156, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154455, "dur":541, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154996, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155123, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155532, "dur":359, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155891, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156231, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156600, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156953, "dur":367102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801527668, "dur":1538, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid":12345, "tid":0, "ts":1689927256457076, "dur":74, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256457181, "dur":1437, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458629, "dur":230, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458928, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256460785, "dur":1395, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689927256463632, "dur":758, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689927256464783, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1689927256467703, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689927256459522, "dur":11259, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256470793, "dur":331487, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802281, "dur":271, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802552, "dur":89, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802801, "dur":57, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802874, "dur":1051, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689927256459543, "dur":11333, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256471386, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256471385, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256471530, "dur":1479, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":1, "ts":1689927256473011, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256473525, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256473992, "dur":1695, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256475908, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256476221, "dur":1847, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\EventTriggerType.cs" }} +,{ "pid":12345, "tid":1, "ts":1689927256473171, "dur":5062, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256478296, "dur":639, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256478935, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256479350, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256479441, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256480164, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256480705, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256480855, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256481010, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256482040, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482273, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482559, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482811, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483001, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483463, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483926, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256484293, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256459591, "dur":11415, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471072, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256471071, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_DDF441E8964B73A7.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471329, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471416, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471554, "dur":169, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1689927256471832, "dur":1719, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp2" }} +,{ "pid":12345, "tid":2, "ts":1689927256473552, "dur":438, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":2047, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\MemberUnitOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256476270, "dur":1451, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\GetMemberOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":3804, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256477883, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478015, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478299, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478929, "dur":528, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256479458, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256480754, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256480380, "dur":710, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689927256481223, "dur":146, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481369, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481449, "dur":605, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482054, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482301, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482584, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482848, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482989, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483463, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483914, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256484285, "dur":318000, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256459510, "dur":11313, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256470850, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256471050, "dur":275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471397, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471614, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471678, "dur":161, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471878, "dur":854, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256472936, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473090, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473244, "dur":204, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473448, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473756, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473921, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474119, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474330, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474519, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474680, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474862, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475083, "dur":206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475289, "dur":219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475508, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475757, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475985, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Welcome\\WelcomeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477056, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477231, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477401, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477572, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477739, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478047, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478324, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478951, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256479335, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256479448, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256479902, "dur":471, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256480425, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256480651, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256481388, "dur":59, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256481447, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482049, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482312, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482588, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482842, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482990, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256483441, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256483541, "dur":276, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256483925, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256484288, "dur":318076, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256459537, "dur":11312, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256470852, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471192, "dur":314, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256471506, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_1122BECC8220CC33.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471566, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":4, "ts":1689927256471797, "dur":1416, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1689927256473495, "dur":507, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\treeview\\AnimationTrackKeyDataSource.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256473227, "dur":840, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256474208, "dur":957, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Ports\\IUnitOutputPortDefinition.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256474068, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256475298, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476087, "dur":757, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Operators\\OperatorUtility.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256475560, "dur":1381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476942, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477126, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477288, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477456, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477608, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477763, "dur":393, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478156, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478298, "dur":657, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478955, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256479460, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256479694, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1689927256480422, "dur":276, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480710, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480813, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480948, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481229, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481337, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481460, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482038, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482282, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482587, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482845, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483018, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483451, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483924, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256484281, "dur":318031, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256459585, "dur":11413, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256471014, "dur":331, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll" }} +,{ "pid":12345, "tid":5, "ts":1689927256471003, "dur":345, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471390, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":5, "ts":1689927256471372, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471491, "dur":115, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471888, "dur":1724, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":638, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":856, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474470, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474719, "dur":267, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474986, "dur":243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475230, "dur":264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475494, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475812, "dur":412, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256476267, "dur":756, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageFormats\\OpenCover\\Model\\SummarySkippedEntity.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256476224, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477340, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477549, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477759, "dur":362, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478122, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478290, "dur":670, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478960, "dur":733, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256479693, "dur":707, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480405, "dur":311, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480805, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480943, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481236, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481370, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481454, "dur":588, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482042, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482275, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482589, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482821, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483015, "dur":386, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483450, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483925, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256484295, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256459619, "dur":11412, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471035, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256471217, "dur":307, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471549, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471669, "dur":209, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471904, "dur":1715, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1390, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1638, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475258, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475489, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475751, "dur":284, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256476260, "dur":710, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Playables\\DirectorControlPlayable.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256476035, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256477125, "dur":641, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\UI\\ScreenResolution.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256477036, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478164, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478299, "dur":654, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478953, "dur":399, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256479353, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256479823, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689927256480600, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480716, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480808, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480937, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481236, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481369, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481447, "dur":582, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482030, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482289, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482576, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482826, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483011, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483445, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483931, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256484260, "dur":12914, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256497175, "dur":305102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256459639, "dur":11429, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471072, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689927256471400, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471539, "dur":181, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1689927256471844, "dur":1714, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp2" }} +,{ "pid":12345, "tid":7, "ts":1689927256473985, "dur":1067, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\StartUpMethodExecutor.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256473559, "dur":1520, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475079, "dur":305, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475384, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475646, "dur":419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476272, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Evaluation\\ScheduleRuntimeClip.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256476065, "dur":843, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476908, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477114, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477346, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477525, "dur":216, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477741, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478016, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478309, "dur":643, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478952, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256479473, "dur":968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480593, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480717, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480842, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480950, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481210, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481363, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481450, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482045, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482312, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482562, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482845, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483002, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483452, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256484297, "dur":318057, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256459759, "dur":11323, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256471383, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":8, "ts":1689927256471381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689927256471507, "dur":2091, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":643, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":898, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474499, "dur":250, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474749, "dur":270, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475019, "dur":297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475317, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256476259, "dur":913, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Macros\\Macro.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256475576, "dur":1596, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477173, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477429, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477650, "dur":673, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478324, "dur":618, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478943, "dur":532, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256479475, "dur":964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480466, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480551, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480607, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480709, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480815, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480930, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481238, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481383, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481449, "dur":598, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482048, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482267, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482571, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482833, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483009, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483448, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483931, "dur":365, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256484296, "dur":318039, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256459781, "dur":11385, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471327, "dur":76, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_35574052A2A89F4F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256471444, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471531, "dur":1629, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":9, "ts":1689927256473176, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256473536, "dur":469, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256474930, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnhandledLogMessageException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475017, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnityTestTimeoutException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475640, "dur":474, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\IAsyncTestAssemblyBuilder.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256476254, "dur":1172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\Runner\\RestoreTestContextAfterDomainReload.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477837, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\IScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477890, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\PlayerTestAssemblyProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256478026, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\ScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256473161, "dur":5023, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478314, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478393, "dur":420, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478880, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478976, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256479327, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256479543, "dur":1610, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256481242, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256481400, "dur":1088, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482559, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256482642, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482995, "dur":460, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483455, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483954, "dur":306, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256484260, "dur":226330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256710594, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710592, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710786, "dur":1167, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256711957, "dur":90310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256459816, "dur":11356, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471315, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471545, "dur":1195, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_1202549BEDFB9D5D.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256472744, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256473002, "dur":403, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473405, "dur":351, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473757, "dur":257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256474203, "dur":965, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Events\\EventUnitWidget.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256474014, "dur":1792, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256475833, "dur":2233, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsObjectAttribute.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256475806, "dur":2410, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478216, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478278, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":10, "ts":1689927256478339, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478928, "dur":537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256479465, "dur":385, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256479891, "dur":760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1689927256480652, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480794, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480964, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481223, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481339, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481472, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482040, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482290, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482548, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482842, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482988, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483464, "dur":426, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483918, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256484273, "dur":317988, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256459839, "dur":11362, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471384, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471498, "dur":91, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_56AFA6E27C7D5F59.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256471683, "dur":1075, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472857, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472940, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473082, "dur":322, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473532, "dur":2137, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineProjectSettings.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256473404, "dur":2331, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256475735, "dur":518, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256476272, "dur":1476, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.settings-manager@2.0.1\\Editor\\SettingsGUILayout.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256476254, "dur":1745, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256477999, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478315, "dur":616, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478931, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479328, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256479404, "dur":560, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479970, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256480370, "dur":521, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256480926, "dur":901, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256481833, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256481915, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256482277, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482574, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482818, "dur":185, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483003, "dur":446, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483450, "dur":436, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483924, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256484272, "dur":317993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256459924, "dur":11305, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256471379, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689927256471378, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689927256471669, "dur":1325, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp2" }} +,{ "pid":12345, "tid":12, "ts":1689927256472994, "dur":214, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473209, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473362, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473505, "dur":372, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473988, "dur":972, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\UnifiedVariableUnitDescriptor.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256474960, "dur":723, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\SetVariableOption.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256473877, "dur":1920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256476263, "dur":1537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\Inspector\\InspectorAdaptiveWidthAttribute.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256475797, "dur":2033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256477964, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478317, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478884, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256479485, "dur":966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480452, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480587, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480789, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481057, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481224, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481351, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481467, "dur":576, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482043, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482285, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482563, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482830, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483001, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483457, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483911, "dur":375, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256484286, "dur":318006, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256459945, "dur":11457, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471418, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471676, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2" }} +,{ "pid":12345, "tid":13, "ts":1689927256471897, "dur":1710, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":1729, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":2253, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476265, "dur":633, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Collections\\NonNullableCollection.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256475862, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476936, "dur":239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477175, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477352, "dur":89, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477441, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477608, "dur":609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478217, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478320, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478916, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256479464, "dur":493, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":13, "ts":1689927256479958, "dur":628, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256480591, "dur":562, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":13, "ts":1689927256481153, "dur":261, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256481472, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482017, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482288, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482575, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482802, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483008, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483443, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483923, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256484272, "dur":317987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256459964, "dur":11446, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471420, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471582, "dur":129, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2" }} +,{ "pid":12345, "tid":14, "ts":1689927256471849, "dur":1734, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":664, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":885, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474469, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474737, "dur":358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256475096, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256476083, "dur":1948, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Description\\IGraphDescription.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256475290, "dur":2933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478224, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478322, "dur":583, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478906, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256479466, "dur":967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480523, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480716, "dur":491, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481215, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481376, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481464, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482066, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482305, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482586, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482803, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483003, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483447, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483906, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256484298, "dur":317995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256460082, "dur":11346, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256471450, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll" }} +,{ "pid":12345, "tid":15, "ts":1689927256471433, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256471706, "dur":1865, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":15, "ts":1689927256473572, "dur":630, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474202, "dur":210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474412, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474595, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474768, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":1028, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\InitializeAfterPluginsAttribute.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256476211, "dur":1699, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_5.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":2990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256477986, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478310, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478923, "dur":538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256479461, "dur":443, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256479917, "dur":747, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":15, "ts":1689927256480665, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480820, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480958, "dur":183, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481144, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481227, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481360, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481456, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482052, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482302, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482582, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482849, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483465, "dur":406, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256484297, "dur":318011, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256460100, "dur":11337, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256471447, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll" }} +,{ "pid":12345, "tid":16, "ts":1689927256471439, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C9C18B6F155787CC.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256471583, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256471681, "dur":1247, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256472956, "dur":208, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473165, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473425, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474083, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474279, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474461, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474633, "dur":197, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474830, "dur":187, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475139, "dur":535, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqCore\\Changelog_1_4_6.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256475017, "dur":727, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475745, "dur":405, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476270, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_StyleSheet.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256476151, "dur":756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476907, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477072, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477229, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477386, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477683, "dur":522, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478205, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478301, "dur":642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478943, "dur":364, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256479331, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256479451, "dur":757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689927256480209, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480544, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480618, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480804, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480957, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481162, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481216, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481358, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481465, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482028, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482297, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482547, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482852, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483464, "dur":411, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483875, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483931, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256484292, "dur":318009, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256460192, "dur":11253, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256471592, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":17, "ts":1689927256471829, "dur":1676, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":17, "ts":1689927256473507, "dur":640, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474148, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474361, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474531, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474688, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474852, "dur":431, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475284, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475480, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475685, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475917, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256476220, "dur":1800, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ColorGradient.cs" }} +,{ "pid":12345, "tid":17, "ts":1689927256476192, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478175, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478317, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478919, "dur":564, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256479483, "dur":972, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480455, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480606, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480724, "dur":84, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480809, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480951, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481214, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481376, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481461, "dur":587, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482049, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482291, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482561, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482839, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482990, "dur":470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483460, "dur":455, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483915, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256484284, "dur":317979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256460213, "dur":11239, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256471484, "dur":218, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689927256471729, "dur":90, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256471881, "dur":1708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256473590, "dur":1399, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256473589, "dur":1583, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475172, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475357, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475569, "dur":233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475995, "dur":2027, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Internal\\fsOption.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256475802, "dur":2242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478044, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478309, "dur":624, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478933, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479315, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479486, "dur":960, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480447, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480583, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480701, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480822, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480925, "dur":447, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481380, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481459, "dur":592, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482052, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482304, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482581, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482847, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483000, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483459, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483877, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483934, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256484259, "dur":12100, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256496362, "dur":653, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256497016, "dur":305263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256460232, "dur":11226, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256471579, "dur":125, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":19, "ts":1689927256471714, "dur":1165, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":19, "ts":1689927256472959, "dur":269, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473229, "dur":254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473483, "dur":330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473813, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":980, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Nesting\\GraphInputAnalyser.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":1189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475176, "dur":337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475513, "dur":560, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476266, "dur":570, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Animation\\AnimationTrack.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256476073, "dur":812, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476885, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477083, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477402, "dur":509, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\MultipleDisplayUtilities.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256477245, "dur":666, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477935, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477995, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478316, "dur":604, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478920, "dur":549, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256479470, "dur":989, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480460, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480563, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480615, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480723, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480821, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480924, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256481244, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256481474, "dur":1285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256482814, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256482897, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483415, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256483533, "dur":343, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483927, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484001, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256484276, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484348, "dur":236, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256485238, "dur":223989, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256710587, "dur":90364, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256710586, "dur":90367, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256800997, "dur":1161, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":20, "ts":1689927256460256, "dur":11251, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256471523, "dur":1991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":20, "ts":1689927256473515, "dur":342, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256473858, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256474206, "dur":1814, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\SubgraphUnit.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256474060, "dur":2096, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256476183, "dur":1888, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ScrollbarEventHandler.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256476156, "dur":2128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478284, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478940, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256479358, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256480755, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\CheckinProgress.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256479537, "dur":1757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256481375, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256481508, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256482035, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482282, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482546, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482818, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483014, "dur":442, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483456, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483905, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256484298, "dur":317984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256806556, "dur":1911, "ph":"X", "name": "ProfilerWriteOutput" } , \ No newline at end of file diff --git a/LMC/Library/Bee/fullprofile.json b/LMC/Library/Bee/fullprofile.json index 04653f33..02934980 100644 --- a/LMC/Library/Bee/fullprofile.json +++ b/LMC/Library/Bee/fullprofile.json @@ -6,1442 +6,1088 @@ }, "traceEvents":[ -{ "pid": 18648, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, -{ "pid": 18648, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, -{ "pid": 18648, "tid": 3185, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801529798, "dur": 16, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801529827, "dur": 4, "ph": "X", "name": "Thread Pool Worker", "args": {} }, -{ "pid": 18648, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, -{ "pid": 18648, "tid": 1, "ts": 1689919801110995, "dur": 1062, "ph": "X", "name": "b__0", "args": {} }, -{ "pid": 18648, "tid": 1, "ts": 1689919801112060, "dur": 9712, "ph": "X", "name": "b__0", "args": {} }, -{ "pid": 18648, "tid": 1, "ts": 1689919801121774, "dur": 21666, "ph": "X", "name": "WriteJson", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801529833, "dur": 8, "ph": "X", "name": "", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801110975, "dur": 18531, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801129508, "dur": 399817, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801129520, "dur": 35, "ph": "X", "name": "ReadAsync 0", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801129557, "dur": 4, "ph": "X", "name": "ProcessMessages 57", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801129563, "dur": 840, "ph": "X", "name": "ReadAsync 57", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130409, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130411, "dur": 46, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130461, "dur": 1, "ph": "X", "name": "ProcessMessages 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130464, "dur": 28, "ph": "X", "name": "ReadAsync 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130493, "dur": 1, "ph": "X", "name": "ProcessMessages 549", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130495, "dur": 22, "ph": "X", "name": "ReadAsync 549", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130519, "dur": 22, "ph": "X", "name": "ReadAsync 217", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130543, "dur": 24, "ph": "X", "name": "ReadAsync 328", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130570, "dur": 1, "ph": "X", "name": "ProcessMessages 237", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130572, "dur": 30, "ph": "X", "name": "ReadAsync 237", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130604, "dur": 1, "ph": "X", "name": "ProcessMessages 335", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130605, "dur": 26, "ph": "X", "name": "ReadAsync 335", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130634, "dur": 31, "ph": "X", "name": "ReadAsync 350", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130668, "dur": 1, "ph": "X", "name": "ProcessMessages 333", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130671, "dur": 39, "ph": "X", "name": "ReadAsync 333", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130713, "dur": 17, "ph": "X", "name": "ReadAsync 89", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130732, "dur": 1, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130735, "dur": 30, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130769, "dur": 26, "ph": "X", "name": "ReadAsync 254", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130797, "dur": 1, "ph": "X", "name": "ProcessMessages 94", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130798, "dur": 20, "ph": "X", "name": "ReadAsync 94", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130823, "dur": 25, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130850, "dur": 25, "ph": "X", "name": "ReadAsync 214", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130880, "dur": 1, "ph": "X", "name": "ProcessMessages 136", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130882, "dur": 38, "ph": "X", "name": "ReadAsync 136", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130923, "dur": 1, "ph": "X", "name": "ProcessMessages 565", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130925, "dur": 21, "ph": "X", "name": "ReadAsync 565", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130949, "dur": 23, "ph": "X", "name": "ReadAsync 118", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801130974, "dur": 25, "ph": "X", "name": "ReadAsync 255", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131004, "dur": 1, "ph": "X", "name": "ProcessMessages 239", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131007, "dur": 32, "ph": "X", "name": "ReadAsync 239", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131041, "dur": 1, "ph": "X", "name": "ProcessMessages 550", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131043, "dur": 64, "ph": "X", "name": "ReadAsync 550", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131111, "dur": 172, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131287, "dur": 48, "ph": "X", "name": "ReadAsync 346", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131336, "dur": 2, "ph": "X", "name": "ProcessMessages 2626", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131339, "dur": 19, "ph": "X", "name": "ReadAsync 2626", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131361, "dur": 19, "ph": "X", "name": "ReadAsync 217", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131383, "dur": 20, "ph": "X", "name": "ReadAsync 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131405, "dur": 23, "ph": "X", "name": "ReadAsync 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131431, "dur": 15, "ph": "X", "name": "ReadAsync 160", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131448, "dur": 18, "ph": "X", "name": "ReadAsync 221", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131468, "dur": 22, "ph": "X", "name": "ReadAsync 130", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131492, "dur": 22, "ph": "X", "name": "ReadAsync 218", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131517, "dur": 18, "ph": "X", "name": "ReadAsync 306", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131537, "dur": 18, "ph": "X", "name": "ReadAsync 270", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131558, "dur": 18, "ph": "X", "name": "ReadAsync 120", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131578, "dur": 19, "ph": "X", "name": "ReadAsync 235", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131599, "dur": 21, "ph": "X", "name": "ReadAsync 204", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131622, "dur": 28, "ph": "X", "name": "ReadAsync 182", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131653, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131673, "dur": 29, "ph": "X", "name": "ReadAsync 236", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131705, "dur": 20, "ph": "X", "name": "ReadAsync 220", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131727, "dur": 19, "ph": "X", "name": "ReadAsync 442", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131749, "dur": 22, "ph": "X", "name": "ReadAsync 218", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131773, "dur": 19, "ph": "X", "name": "ReadAsync 204", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131793, "dur": 1, "ph": "X", "name": "ProcessMessages 321", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131795, "dur": 19, "ph": "X", "name": "ReadAsync 321", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131816, "dur": 24, "ph": "X", "name": "ReadAsync 277", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131843, "dur": 19, "ph": "X", "name": "ReadAsync 233", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131865, "dur": 20, "ph": "X", "name": "ReadAsync 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131888, "dur": 21, "ph": "X", "name": "ReadAsync 219", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131911, "dur": 18, "ph": "X", "name": "ReadAsync 310", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131931, "dur": 18, "ph": "X", "name": "ReadAsync 272", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131952, "dur": 18, "ph": "X", "name": "ReadAsync 233", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131972, "dur": 23, "ph": "X", "name": "ReadAsync 220", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801131997, "dur": 18, "ph": "X", "name": "ReadAsync 337", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132018, "dur": 19, "ph": "X", "name": "ReadAsync 286", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132039, "dur": 20, "ph": "X", "name": "ReadAsync 236", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132062, "dur": 18, "ph": "X", "name": "ReadAsync 215", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132082, "dur": 18, "ph": "X", "name": "ReadAsync 250", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132103, "dur": 19, "ph": "X", "name": "ReadAsync 222", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132125, "dur": 18, "ph": "X", "name": "ReadAsync 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132145, "dur": 17, "ph": "X", "name": "ReadAsync 293", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132165, "dur": 19, "ph": "X", "name": "ReadAsync 168", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132186, "dur": 20, "ph": "X", "name": "ReadAsync 278", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132210, "dur": 18, "ph": "X", "name": "ReadAsync 333", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132229, "dur": 1, "ph": "X", "name": "ProcessMessages 272", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132231, "dur": 20, "ph": "X", "name": "ReadAsync 272", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132253, "dur": 18, "ph": "X", "name": "ReadAsync 242", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132273, "dur": 19, "ph": "X", "name": "ReadAsync 212", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132295, "dur": 18, "ph": "X", "name": "ReadAsync 258", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132316, "dur": 18, "ph": "X", "name": "ReadAsync 329", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132336, "dur": 26, "ph": "X", "name": "ReadAsync 147", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132365, "dur": 22, "ph": "X", "name": "ReadAsync 298", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132389, "dur": 19, "ph": "X", "name": "ReadAsync 385", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132411, "dur": 18, "ph": "X", "name": "ReadAsync 288", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132431, "dur": 18, "ph": "X", "name": "ReadAsync 262", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132451, "dur": 20, "ph": "X", "name": "ReadAsync 240", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132473, "dur": 18, "ph": "X", "name": "ReadAsync 232", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132494, "dur": 18, "ph": "X", "name": "ReadAsync 268", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132514, "dur": 18, "ph": "X", "name": "ReadAsync 242", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132535, "dur": 18, "ph": "X", "name": "ReadAsync 253", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132555, "dur": 18, "ph": "X", "name": "ReadAsync 275", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132576, "dur": 18, "ph": "X", "name": "ReadAsync 249", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132596, "dur": 19, "ph": "X", "name": "ReadAsync 224", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132618, "dur": 17, "ph": "X", "name": "ReadAsync 217", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132637, "dur": 3, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132641, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132663, "dur": 18, "ph": "X", "name": "ReadAsync 309", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132684, "dur": 23, "ph": "X", "name": "ReadAsync 242", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132709, "dur": 20, "ph": "X", "name": "ReadAsync 350", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132731, "dur": 27, "ph": "X", "name": "ReadAsync 246", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132761, "dur": 1, "ph": "X", "name": "ProcessMessages 264", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132764, "dur": 22, "ph": "X", "name": "ReadAsync 264", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132788, "dur": 19, "ph": "X", "name": "ReadAsync 311", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132813, "dur": 23, "ph": "X", "name": "ReadAsync 249", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132838, "dur": 18, "ph": "X", "name": "ReadAsync 353", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132859, "dur": 21, "ph": "X", "name": "ReadAsync 256", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132882, "dur": 17, "ph": "X", "name": "ReadAsync 283", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132901, "dur": 21, "ph": "X", "name": "ReadAsync 314", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132925, "dur": 19, "ph": "X", "name": "ReadAsync 278", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132946, "dur": 18, "ph": "X", "name": "ReadAsync 244", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132966, "dur": 18, "ph": "X", "name": "ReadAsync 240", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801132985, "dur": 21, "ph": "X", "name": "ReadAsync 267", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133008, "dur": 17, "ph": "X", "name": "ReadAsync 238", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133027, "dur": 19, "ph": "X", "name": "ReadAsync 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133048, "dur": 18, "ph": "X", "name": "ReadAsync 242", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133069, "dur": 19, "ph": "X", "name": "ReadAsync 215", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133090, "dur": 20, "ph": "X", "name": "ReadAsync 241", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133113, "dur": 17, "ph": "X", "name": "ReadAsync 311", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133132, "dur": 16, "ph": "X", "name": "ReadAsync 239", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133151, "dur": 21, "ph": "X", "name": "ReadAsync 90", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133174, "dur": 17, "ph": "X", "name": "ReadAsync 230", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133194, "dur": 18, "ph": "X", "name": "ReadAsync 141", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133213, "dur": 21, "ph": "X", "name": "ReadAsync 256", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133237, "dur": 20, "ph": "X", "name": "ReadAsync 291", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133259, "dur": 20, "ph": "X", "name": "ReadAsync 244", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133281, "dur": 18, "ph": "X", "name": "ReadAsync 212", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133301, "dur": 29, "ph": "X", "name": "ReadAsync 327", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133332, "dur": 19, "ph": "X", "name": "ReadAsync 272", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133353, "dur": 18, "ph": "X", "name": "ReadAsync 354", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133374, "dur": 33, "ph": "X", "name": "ReadAsync 239", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133409, "dur": 25, "ph": "X", "name": "ReadAsync 230", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133435, "dur": 1, "ph": "X", "name": "ProcessMessages 611", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133437, "dur": 18, "ph": "X", "name": "ReadAsync 611", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133457, "dur": 18, "ph": "X", "name": "ReadAsync 137", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133477, "dur": 21, "ph": "X", "name": "ReadAsync 228", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133500, "dur": 17, "ph": "X", "name": "ReadAsync 274", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133520, "dur": 17, "ph": "X", "name": "ReadAsync 133", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133538, "dur": 16, "ph": "X", "name": "ReadAsync 191", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133557, "dur": 17, "ph": "X", "name": "ReadAsync 137", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133576, "dur": 18, "ph": "X", "name": "ReadAsync 143", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133596, "dur": 15, "ph": "X", "name": "ReadAsync 229", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133613, "dur": 16, "ph": "X", "name": "ReadAsync 73", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133631, "dur": 16, "ph": "X", "name": "ReadAsync 125", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133649, "dur": 31, "ph": "X", "name": "ReadAsync 161", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133689, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133727, "dur": 1, "ph": "X", "name": "ProcessMessages 448", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133730, "dur": 21, "ph": "X", "name": "ReadAsync 448", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133755, "dur": 23, "ph": "X", "name": "ReadAsync 111", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133779, "dur": 1, "ph": "X", "name": "ProcessMessages 101", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133781, "dur": 24, "ph": "X", "name": "ReadAsync 101", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133807, "dur": 20, "ph": "X", "name": "ReadAsync 264", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133829, "dur": 20, "ph": "X", "name": "ReadAsync 283", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133851, "dur": 36, "ph": "X", "name": "ReadAsync 195", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133891, "dur": 1, "ph": "X", "name": "ProcessMessages 145", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133893, "dur": 26, "ph": "X", "name": "ReadAsync 145", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133921, "dur": 19, "ph": "X", "name": "ReadAsync 189", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133943, "dur": 19, "ph": "X", "name": "ReadAsync 182", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133965, "dur": 19, "ph": "X", "name": "ReadAsync 190", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801133986, "dur": 17, "ph": "X", "name": "ReadAsync 221", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134005, "dur": 25, "ph": "X", "name": "ReadAsync 65", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134033, "dur": 21, "ph": "X", "name": "ReadAsync 128", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134056, "dur": 1, "ph": "X", "name": "ProcessMessages 290", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134059, "dur": 20, "ph": "X", "name": "ReadAsync 290", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134082, "dur": 19, "ph": "X", "name": "ReadAsync 297", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134103, "dur": 17, "ph": "X", "name": "ReadAsync 175", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134122, "dur": 17, "ph": "X", "name": "ReadAsync 181", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134142, "dur": 17, "ph": "X", "name": "ReadAsync 154", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134161, "dur": 19, "ph": "X", "name": "ReadAsync 132", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134182, "dur": 17, "ph": "X", "name": "ReadAsync 209", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134201, "dur": 18, "ph": "X", "name": "ReadAsync 69", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134220, "dur": 15, "ph": "X", "name": "ReadAsync 201", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134238, "dur": 78, "ph": "X", "name": "ReadAsync 61", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134317, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134340, "dur": 20, "ph": "X", "name": "ReadAsync 220", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134364, "dur": 23, "ph": "X", "name": "ReadAsync 259", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134390, "dur": 76, "ph": "X", "name": "ReadAsync 229", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134468, "dur": 18, "ph": "X", "name": "ReadAsync 1", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134489, "dur": 18, "ph": "X", "name": "ReadAsync 266", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134509, "dur": 17, "ph": "X", "name": "ReadAsync 127", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134527, "dur": 17, "ph": "X", "name": "ReadAsync 185", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134546, "dur": 19, "ph": "X", "name": "ReadAsync 102", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134568, "dur": 21, "ph": "X", "name": "ReadAsync 226", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134591, "dur": 17, "ph": "X", "name": "ReadAsync 208", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134610, "dur": 24, "ph": "X", "name": "ReadAsync 62", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134638, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134639, "dur": 41, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134683, "dur": 1, "ph": "X", "name": "ProcessMessages 322", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134686, "dur": 27, "ph": "X", "name": "ReadAsync 322", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134714, "dur": 1, "ph": "X", "name": "ProcessMessages 560", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134716, "dur": 22, "ph": "X", "name": "ReadAsync 560", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134740, "dur": 1, "ph": "X", "name": "ProcessMessages 198", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134741, "dur": 29, "ph": "X", "name": "ReadAsync 198", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134774, "dur": 27, "ph": "X", "name": "ReadAsync 147", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134803, "dur": 25, "ph": "X", "name": "ReadAsync 262", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134830, "dur": 1, "ph": "X", "name": "ProcessMessages 305", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134833, "dur": 24, "ph": "X", "name": "ReadAsync 305", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134860, "dur": 81, "ph": "X", "name": "ReadAsync 289", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134944, "dur": 28, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134975, "dur": 22, "ph": "X", "name": "ReadAsync 324", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801134999, "dur": 21, "ph": "X", "name": "ReadAsync 291", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135022, "dur": 1, "ph": "X", "name": "ProcessMessages 250", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135024, "dur": 20, "ph": "X", "name": "ReadAsync 250", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135047, "dur": 1, "ph": "X", "name": "ProcessMessages 193", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135049, "dur": 26, "ph": "X", "name": "ReadAsync 193", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135077, "dur": 1, "ph": "X", "name": "ProcessMessages 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135079, "dur": 23, "ph": "X", "name": "ReadAsync 330", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135104, "dur": 23, "ph": "X", "name": "ReadAsync 185", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135130, "dur": 20, "ph": "X", "name": "ReadAsync 297", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135153, "dur": 19, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135174, "dur": 25, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135202, "dur": 18, "ph": "X", "name": "ReadAsync 374", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135222, "dur": 21, "ph": "X", "name": "ReadAsync 263", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135245, "dur": 19, "ph": "X", "name": "ReadAsync 331", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135267, "dur": 21, "ph": "X", "name": "ReadAsync 248", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135290, "dur": 17, "ph": "X", "name": "ReadAsync 322", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135310, "dur": 18, "ph": "X", "name": "ReadAsync 267", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135330, "dur": 17, "ph": "X", "name": "ReadAsync 144", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135350, "dur": 17, "ph": "X", "name": "ReadAsync 325", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135370, "dur": 19, "ph": "X", "name": "ReadAsync 60", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135392, "dur": 14, "ph": "X", "name": "ReadAsync 313", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801135409, "dur": 2497, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801137911, "dur": 1, "ph": "X", "name": "ProcessMessages 326", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801137913, "dur": 254, "ph": "X", "name": "ReadAsync 326", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138170, "dur": 38, "ph": "X", "name": "ProcessMessages 20503", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138210, "dur": 34, "ph": "X", "name": "ReadAsync 20503", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138245, "dur": 1, "ph": "X", "name": "ProcessMessages 743", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138247, "dur": 19, "ph": "X", "name": "ReadAsync 743", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138268, "dur": 20, "ph": "X", "name": "ReadAsync 126", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138291, "dur": 19, "ph": "X", "name": "ReadAsync 162", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138311, "dur": 19, "ph": "X", "name": "ReadAsync 323", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138334, "dur": 17, "ph": "X", "name": "ReadAsync 226", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138354, "dur": 24, "ph": "X", "name": "ReadAsync 81", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138380, "dur": 20, "ph": "X", "name": "ReadAsync 146", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138402, "dur": 27, "ph": "X", "name": "ReadAsync 294", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138431, "dur": 26, "ph": "X", "name": "ReadAsync 339", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138461, "dur": 1, "ph": "X", "name": "ProcessMessages 273", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138464, "dur": 211, "ph": "X", "name": "ReadAsync 273", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138677, "dur": 1, "ph": "X", "name": "ProcessMessages 465", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138678, "dur": 72, "ph": "X", "name": "ReadAsync 465", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138753, "dur": 21, "ph": "X", "name": "ReadAsync 272", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138777, "dur": 23, "ph": "X", "name": "ReadAsync 499", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138803, "dur": 20, "ph": "X", "name": "ReadAsync 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138825, "dur": 22, "ph": "X", "name": "ReadAsync 235", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138849, "dur": 1, "ph": "X", "name": "ProcessMessages 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138851, "dur": 22, "ph": "X", "name": "ReadAsync 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138876, "dur": 20, "ph": "X", "name": "ReadAsync 314", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138899, "dur": 1, "ph": "X", "name": "ProcessMessages 178", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138901, "dur": 27, "ph": "X", "name": "ReadAsync 178", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138931, "dur": 33, "ph": "X", "name": "ReadAsync 244", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138968, "dur": 1, "ph": "X", "name": "ProcessMessages 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801138970, "dur": 32, "ph": "X", "name": "ReadAsync 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139004, "dur": 1, "ph": "X", "name": "ProcessMessages 290", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139007, "dur": 31, "ph": "X", "name": "ReadAsync 290", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139041, "dur": 133, "ph": "X", "name": "ReadAsync 274", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139178, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139180, "dur": 52, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139235, "dur": 2, "ph": "X", "name": "ProcessMessages 1810", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139238, "dur": 26, "ph": "X", "name": "ReadAsync 1810", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139267, "dur": 18, "ph": "X", "name": "ReadAsync 341", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139287, "dur": 18, "ph": "X", "name": "ReadAsync 196", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139308, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139339, "dur": 25, "ph": "X", "name": "ReadAsync 312", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139365, "dur": 1, "ph": "X", "name": "ProcessMessages 336", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139367, "dur": 20, "ph": "X", "name": "ReadAsync 336", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139389, "dur": 16, "ph": "X", "name": "ReadAsync 243", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139408, "dur": 28, "ph": "X", "name": "ReadAsync 87", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139438, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139461, "dur": 19, "ph": "X", "name": "ReadAsync 193", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139483, "dur": 17, "ph": "X", "name": "ReadAsync 250", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139502, "dur": 18, "ph": "X", "name": "ReadAsync 112", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139522, "dur": 17, "ph": "X", "name": "ReadAsync 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139540, "dur": 1, "ph": "X", "name": "ProcessMessages 144", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139542, "dur": 17, "ph": "X", "name": "ReadAsync 144", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139561, "dur": 15, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139580, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139600, "dur": 21, "ph": "X", "name": "ReadAsync 303", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139623, "dur": 17, "ph": "X", "name": "ReadAsync 212", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139643, "dur": 17, "ph": "X", "name": "ReadAsync 132", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139662, "dur": 69, "ph": "X", "name": "ReadAsync 223", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139735, "dur": 2, "ph": "X", "name": "ProcessMessages 331", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139738, "dur": 27, "ph": "X", "name": "ReadAsync 331", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139768, "dur": 20, "ph": "X", "name": "ReadAsync 599", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139790, "dur": 17, "ph": "X", "name": "ReadAsync 239", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139810, "dur": 19, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139831, "dur": 19, "ph": "X", "name": "ReadAsync 234", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139852, "dur": 1, "ph": "X", "name": "ProcessMessages 192", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139855, "dur": 24, "ph": "X", "name": "ReadAsync 192", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139881, "dur": 18, "ph": "X", "name": "ReadAsync 318", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139901, "dur": 17, "ph": "X", "name": "ReadAsync 184", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139920, "dur": 17, "ph": "X", "name": "ReadAsync 181", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139939, "dur": 18, "ph": "X", "name": "ReadAsync 106", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139959, "dur": 17, "ph": "X", "name": "ReadAsync 157", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139979, "dur": 11, "ph": "X", "name": "ReadAsync 167", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801139992, "dur": 15, "ph": "X", "name": "ReadAsync 179", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140009, "dur": 17, "ph": "X", "name": "ReadAsync 118", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140028, "dur": 16, "ph": "X", "name": "ReadAsync 159", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140046, "dur": 17, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140066, "dur": 19, "ph": "X", "name": "ReadAsync 343", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140087, "dur": 17, "ph": "X", "name": "ReadAsync 259", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140107, "dur": 20, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140128, "dur": 17, "ph": "X", "name": "ReadAsync 283", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140148, "dur": 17, "ph": "X", "name": "ReadAsync 235", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140168, "dur": 18, "ph": "X", "name": "ReadAsync 184", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140188, "dur": 20, "ph": "X", "name": "ReadAsync 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140210, "dur": 18, "ph": "X", "name": "ReadAsync 224", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140230, "dur": 18, "ph": "X", "name": "ReadAsync 228", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140250, "dur": 16, "ph": "X", "name": "ReadAsync 261", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140268, "dur": 19, "ph": "X", "name": "ReadAsync 102", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140289, "dur": 17, "ph": "X", "name": "ReadAsync 145", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140308, "dur": 18, "ph": "X", "name": "ReadAsync 233", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140328, "dur": 19, "ph": "X", "name": "ReadAsync 224", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140350, "dur": 19, "ph": "X", "name": "ReadAsync 143", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140371, "dur": 18, "ph": "X", "name": "ReadAsync 334", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140391, "dur": 31, "ph": "X", "name": "ReadAsync 149", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140425, "dur": 1, "ph": "X", "name": "ProcessMessages 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140428, "dur": 24, "ph": "X", "name": "ReadAsync 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140454, "dur": 19, "ph": "X", "name": "ReadAsync 258", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140475, "dur": 18, "ph": "X", "name": "ReadAsync 255", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140496, "dur": 19, "ph": "X", "name": "ReadAsync 224", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140517, "dur": 16, "ph": "X", "name": "ReadAsync 187", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140536, "dur": 20, "ph": "X", "name": "ReadAsync 40", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140558, "dur": 21, "ph": "X", "name": "ReadAsync 300", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140581, "dur": 19, "ph": "X", "name": "ReadAsync 211", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140603, "dur": 18, "ph": "X", "name": "ReadAsync 257", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140623, "dur": 18, "ph": "X", "name": "ReadAsync 192", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140643, "dur": 17, "ph": "X", "name": "ReadAsync 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140662, "dur": 1, "ph": "X", "name": "ProcessMessages 177", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140664, "dur": 22, "ph": "X", "name": "ReadAsync 177", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140688, "dur": 20, "ph": "X", "name": "ReadAsync 165", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140711, "dur": 28, "ph": "X", "name": "ReadAsync 291", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140742, "dur": 1, "ph": "X", "name": "ProcessMessages 230", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140744, "dur": 22, "ph": "X", "name": "ReadAsync 230", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140768, "dur": 19, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140790, "dur": 22, "ph": "X", "name": "ReadAsync 152", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140816, "dur": 25, "ph": "X", "name": "ReadAsync 203", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140843, "dur": 1, "ph": "X", "name": "ProcessMessages 257", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140844, "dur": 19, "ph": "X", "name": "ReadAsync 257", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140866, "dur": 23, "ph": "X", "name": "ReadAsync 171", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140891, "dur": 1, "ph": "X", "name": "ProcessMessages 166", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140893, "dur": 19, "ph": "X", "name": "ReadAsync 166", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140915, "dur": 18, "ph": "X", "name": "ReadAsync 214", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140935, "dur": 22, "ph": "X", "name": "ReadAsync 125", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140959, "dur": 17, "ph": "X", "name": "ReadAsync 183", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801140979, "dur": 18, "ph": "X", "name": "ReadAsync 212", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141000, "dur": 18, "ph": "X", "name": "ReadAsync 111", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141020, "dur": 18, "ph": "X", "name": "ReadAsync 180", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141040, "dur": 17, "ph": "X", "name": "ReadAsync 194", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141060, "dur": 18, "ph": "X", "name": "ReadAsync 159", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141080, "dur": 19, "ph": "X", "name": "ReadAsync 117", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141102, "dur": 18, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141122, "dur": 18, "ph": "X", "name": "ReadAsync 148", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141142, "dur": 20, "ph": "X", "name": "ReadAsync 155", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141164, "dur": 17, "ph": "X", "name": "ReadAsync 164", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141184, "dur": 18, "ph": "X", "name": "ReadAsync 194", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141204, "dur": 18, "ph": "X", "name": "ReadAsync 174", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141224, "dur": 27, "ph": "X", "name": "ReadAsync 154", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141254, "dur": 17, "ph": "X", "name": "ReadAsync 305", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141274, "dur": 22, "ph": "X", "name": "ReadAsync 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141299, "dur": 18, "ph": "X", "name": "ReadAsync 247", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141319, "dur": 23, "ph": "X", "name": "ReadAsync 167", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141345, "dur": 20, "ph": "X", "name": "ReadAsync 138", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141366, "dur": 1, "ph": "X", "name": "ProcessMessages 245", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141368, "dur": 17, "ph": "X", "name": "ReadAsync 245", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141388, "dur": 19, "ph": "X", "name": "ReadAsync 221", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141409, "dur": 23, "ph": "X", "name": "ReadAsync 224", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141434, "dur": 1, "ph": "X", "name": "ProcessMessages 228", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141436, "dur": 23, "ph": "X", "name": "ReadAsync 228", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141461, "dur": 19, "ph": "X", "name": "ReadAsync 334", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141483, "dur": 20, "ph": "X", "name": "ReadAsync 257", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141505, "dur": 17, "ph": "X", "name": "ReadAsync 321", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141524, "dur": 17, "ph": "X", "name": "ReadAsync 188", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141544, "dur": 17, "ph": "X", "name": "ReadAsync 177", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141563, "dur": 1, "ph": "X", "name": "ProcessMessages 109", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141565, "dur": 19, "ph": "X", "name": "ReadAsync 109", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141586, "dur": 21, "ph": "X", "name": "ReadAsync 168", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141609, "dur": 17, "ph": "X", "name": "ReadAsync 192", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141629, "dur": 18, "ph": "X", "name": "ReadAsync 199", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141649, "dur": 17, "ph": "X", "name": "ReadAsync 173", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141668, "dur": 18, "ph": "X", "name": "ReadAsync 144", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141688, "dur": 20, "ph": "X", "name": "ReadAsync 185", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141711, "dur": 19, "ph": "X", "name": "ReadAsync 253", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141733, "dur": 18, "ph": "X", "name": "ReadAsync 254", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141753, "dur": 20, "ph": "X", "name": "ReadAsync 195", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141775, "dur": 20, "ph": "X", "name": "ReadAsync 241", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141798, "dur": 19, "ph": "X", "name": "ReadAsync 214", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141820, "dur": 19, "ph": "X", "name": "ReadAsync 190", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141841, "dur": 17, "ph": "X", "name": "ReadAsync 230", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141861, "dur": 15, "ph": "X", "name": "ReadAsync 244", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141878, "dur": 16, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141897, "dur": 19, "ph": "X", "name": "ReadAsync 171", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141918, "dur": 17, "ph": "X", "name": "ReadAsync 180", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141938, "dur": 20, "ph": "X", "name": "ReadAsync 166", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141961, "dur": 21, "ph": "X", "name": "ReadAsync 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801141984, "dur": 20, "ph": "X", "name": "ReadAsync 248", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142006, "dur": 20, "ph": "X", "name": "ReadAsync 233", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142028, "dur": 17, "ph": "X", "name": "ReadAsync 170", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142047, "dur": 17, "ph": "X", "name": "ReadAsync 134", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142067, "dur": 18, "ph": "X", "name": "ReadAsync 179", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142087, "dur": 17, "ph": "X", "name": "ReadAsync 243", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142106, "dur": 18, "ph": "X", "name": "ReadAsync 186", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142127, "dur": 37, "ph": "X", "name": "ReadAsync 163", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142165, "dur": 18, "ph": "X", "name": "ReadAsync 422", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142186, "dur": 18, "ph": "X", "name": "ReadAsync 180", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142206, "dur": 23, "ph": "X", "name": "ReadAsync 163", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142232, "dur": 17, "ph": "X", "name": "ReadAsync 269", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142251, "dur": 17, "ph": "X", "name": "ReadAsync 191", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142269, "dur": 1, "ph": "X", "name": "ProcessMessages 236", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142271, "dur": 19, "ph": "X", "name": "ReadAsync 236", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142293, "dur": 18, "ph": "X", "name": "ReadAsync 194", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142313, "dur": 18, "ph": "X", "name": "ReadAsync 186", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142334, "dur": 18, "ph": "X", "name": "ReadAsync 227", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142354, "dur": 19, "ph": "X", "name": "ReadAsync 269", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142376, "dur": 16, "ph": "X", "name": "ReadAsync 193", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142394, "dur": 20, "ph": "X", "name": "ReadAsync 160", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142416, "dur": 17, "ph": "X", "name": "ReadAsync 202", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142436, "dur": 21, "ph": "X", "name": "ReadAsync 186", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142459, "dur": 20, "ph": "X", "name": "ReadAsync 206", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142482, "dur": 18, "ph": "X", "name": "ReadAsync 171", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142502, "dur": 17, "ph": "X", "name": "ReadAsync 243", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142522, "dur": 18, "ph": "X", "name": "ReadAsync 172", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142541, "dur": 17, "ph": "X", "name": "ReadAsync 207", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142561, "dur": 18, "ph": "X", "name": "ReadAsync 174", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142582, "dur": 17, "ph": "X", "name": "ReadAsync 196", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142601, "dur": 17, "ph": "X", "name": "ReadAsync 167", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142621, "dur": 17, "ph": "X", "name": "ReadAsync 169", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142640, "dur": 18, "ph": "X", "name": "ReadAsync 205", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142660, "dur": 29, "ph": "X", "name": "ReadAsync 68", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142691, "dur": 22, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142715, "dur": 19, "ph": "X", "name": "ReadAsync 151", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142737, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142739, "dur": 107, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142848, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142850, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142869, "dur": 15, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142887, "dur": 16, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142906, "dur": 41, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142949, "dur": 1, "ph": "X", "name": "ProcessMessages 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142951, "dur": 17, "ph": "X", "name": "ReadAsync 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142971, "dur": 14, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801142987, "dur": 13, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143002, "dur": 13, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143017, "dur": 12, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143032, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143048, "dur": 13, "ph": "X", "name": "ReadAsync 36", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143063, "dur": 28, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143094, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143112, "dur": 15, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143130, "dur": 13, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143145, "dur": 13, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143160, "dur": 12, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143175, "dur": 13, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143191, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143207, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143223, "dur": 13, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143238, "dur": 15, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143255, "dur": 13, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143277, "dur": 14, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143294, "dur": 13, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143310, "dur": 13, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143326, "dur": 14, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143342, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143362, "dur": 13, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143377, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143393, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143395, "dur": 18, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143416, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143432, "dur": 20, "ph": "X", "name": "ReadAsync 36", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143456, "dur": 31, "ph": "X", "name": "ReadAsync 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143489, "dur": 165, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143657, "dur": 49, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143708, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143711, "dur": 22, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143734, "dur": 2, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143737, "dur": 65, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143804, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143821, "dur": 1, "ph": "X", "name": "ProcessMessages 84", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143823, "dur": 31, "ph": "X", "name": "ReadAsync 84", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143857, "dur": 82, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143941, "dur": 14, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143957, "dur": 13, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143972, "dur": 17, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801143991, "dur": 19, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144012, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144015, "dur": 19, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144036, "dur": 14, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144052, "dur": 14, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144068, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144085, "dur": 13, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144100, "dur": 16, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144119, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144140, "dur": 13, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144155, "dur": 17, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144174, "dur": 13, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144189, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144206, "dur": 20, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144229, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144231, "dur": 19, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144253, "dur": 13, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144268, "dur": 41, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144311, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144313, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144328, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144330, "dur": 15, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144347, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144365, "dur": 16, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144385, "dur": 13, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144400, "dur": 18, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144422, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144423, "dur": 19, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144445, "dur": 13, "ph": "X", "name": "ReadAsync 36", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144460, "dur": 16, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144478, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144480, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144498, "dur": 13, "ph": "X", "name": "ReadAsync 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144513, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144530, "dur": 31, "ph": "X", "name": "ReadAsync 52", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144564, "dur": 38, "ph": "X", "name": "ReadAsync 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144604, "dur": 15, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144621, "dur": 13, "ph": "X", "name": "ReadAsync 60", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144637, "dur": 30, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144669, "dur": 29, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144702, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144719, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144811, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144835, "dur": 1, "ph": "X", "name": "ProcessMessages 260", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144837, "dur": 21, "ph": "X", "name": "ReadAsync 260", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144861, "dur": 18, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144881, "dur": 15, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144899, "dur": 16, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801144918, "dur": 113, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145035, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145037, "dur": 39, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145077, "dur": 2, "ph": "X", "name": "ProcessMessages 448", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145080, "dur": 14, "ph": "X", "name": "ReadAsync 448", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145097, "dur": 14, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145114, "dur": 15, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145132, "dur": 16, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145150, "dur": 13, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145166, "dur": 21, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145189, "dur": 12, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145203, "dur": 403, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145609, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145632, "dur": 15, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145649, "dur": 17, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145669, "dur": 28, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145699, "dur": 1, "ph": "X", "name": "ProcessMessages 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145702, "dur": 30, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145734, "dur": 105, "ph": "X", "name": "ReadAsync 52", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145844, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145845, "dur": 31, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801145879, "dur": 4188, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150073, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150076, "dur": 36, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150115, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150118, "dur": 31, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150153, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150155, "dur": 422, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150582, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150584, "dur": 31, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150618, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150620, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150647, "dur": 41, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150692, "dur": 22, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801150716, "dur": 384, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151103, "dur": 40, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151148, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151150, "dur": 25, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151177, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151179, "dur": 19, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151201, "dur": 247, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151452, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151481, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151504, "dur": 50, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151557, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151575, "dur": 33, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151611, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151632, "dur": 71, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151706, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151731, "dur": 56, "ph": "X", "name": "ReadAsync 52", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151792, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151812, "dur": 49, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151862, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151865, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801151884, "dur": 144, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152029, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152054, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152056, "dur": 24, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152083, "dur": 28, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152113, "dur": 136, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152251, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152275, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152277, "dur": 22, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152302, "dur": 22, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152326, "dur": 22, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152350, "dur": 18, "ph": "X", "name": "ReadAsync 28", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152370, "dur": 18, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152391, "dur": 22, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152415, "dur": 19, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152436, "dur": 20, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152458, "dur": 17, "ph": "X", "name": "ReadAsync 36", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152477, "dur": 130, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152610, "dur": 32, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152644, "dur": 27, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152675, "dur": 19, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152697, "dur": 78, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152777, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801152797, "dur": 241, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153042, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153070, "dur": 27, "ph": "X", "name": "ReadAsync 36", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153101, "dur": 31, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153137, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153140, "dur": 42, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153188, "dur": 1, "ph": "X", "name": "ProcessMessages 124", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153196, "dur": 25, "ph": "X", "name": "ReadAsync 124", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153224, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153227, "dur": 26, "ph": "X", "name": "ReadAsync 52", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153256, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153277, "dur": 5, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153283, "dur": 52, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153338, "dur": 53, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153395, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153397, "dur": 69, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153469, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153471, "dur": 28, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153501, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153503, "dur": 56, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153564, "dur": 32, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153601, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153603, "dur": 32, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153638, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153641, "dur": 34, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153678, "dur": 53, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153733, "dur": 85, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153820, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153822, "dur": 42, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153866, "dur": 1, "ph": "X", "name": "ProcessMessages 60", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153869, "dur": 34, "ph": "X", "name": "ReadAsync 60", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153907, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153910, "dur": 30, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153956, "dur": 6, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153964, "dur": 29, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801153996, "dur": 217, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154217, "dur": 293, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154515, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154517, "dur": 36, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154556, "dur": 169, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154730, "dur": 139, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154872, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154874, "dur": 30, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154907, "dur": 1, "ph": "X", "name": "ProcessMessages 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154909, "dur": 43, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154955, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801154957, "dur": 249, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155209, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155210, "dur": 89, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155304, "dur": 1, "ph": "X", "name": "ProcessMessages 68", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155307, "dur": 271, "ph": "X", "name": "ReadAsync 68", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155581, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155583, "dur": 75, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155661, "dur": 5, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155670, "dur": 63, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155736, "dur": 64, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155805, "dur": 164, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155972, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801155974, "dur": 50, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156026, "dur": 226, "ph": "X", "name": "ReadAsync 80", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156256, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156258, "dur": 66, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156327, "dur": 21, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156351, "dur": 57, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156411, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156413, "dur": 20, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156435, "dur": 213, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156651, "dur": 58, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156713, "dur": 2, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156716, "dur": 14, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801156732, "dur": 577, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801157312, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801157314, "dur": 35, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801157355, "dur": 3, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801157360, "dur": 301705, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801459076, "dur": 4, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801459082, "dur": 42, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801459127, "dur": 290, "ph": "X", "name": "ProcessMessages 351", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801459420, "dur": 932, "ph": "X", "name": "ReadAsync 351", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801460356, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801460357, "dur": 30, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801460389, "dur": 2, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801460393, "dur": 945, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801461341, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801461344, "dur": 37, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801461383, "dur": 13, "ph": "X", "name": "ProcessMessages 34", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801461396, "dur": 61334, "ph": "X", "name": "ReadAsync 34", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801522744, "dur": 3, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801522749, "dur": 30, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801522779, "dur": 3, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801522783, "dur": 981, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801523769, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801523771, "dur": 84, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801523860, "dur": 29, "ph": "X", "name": "ProcessMessages 50", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801523891, "dur": 478, "ph": "X", "name": "ReadAsync 50", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801524372, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801524374, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 18648, "tid": 25769803776, "ts": 1689919801524390, "dur": 4929, "ph": "X", "name": "ReadAsync 13", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801529842, "dur": 765, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, -{ "pid": 18648, "tid": 21474836480, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, -{ "pid": 18648, "tid": 21474836480, "ts": 1689919801110937, "dur": 32504, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, -{ "pid": 18648, "tid": 21474836480, "ts": 1689919801143443, "dur": 33, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801530610, "dur": 5, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, -{ "pid": 18648, "tid": 17179869184, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, -{ "pid": 18648, "tid": 17179869184, "ts": 1689919801108339, "dur": 421042, "ph": "X", "name": "RunBackend", "args": {} }, -{ "pid": 18648, "tid": 17179869184, "ts": 1689919801108487, "dur": 2416, "ph": "X", "name": "BackendProgram.Start", "args": {} }, -{ "pid": 18648, "tid": 17179869184, "ts": 1689919801529385, "dur": 66, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, -{ "pid": 18648, "tid": 17179869184, "ts": 1689919801529401, "dur": 17, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, -{ "pid": 18648, "tid": 17179869184, "ts": 1689919801529453, "dur": 1, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801530616, "dur": 8, "ph": "X", "name": "BuildAsync", "args": {} }, +{ "pid": 28512, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, +{ "pid": 28512, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, +{ "pid": 28512, "tid": 1242, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256818081, "dur": 607, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256821957, "dur": 927, "ph": "X", "name": "Thread Pool Worker", "args": {} }, +{ "pid": 28512, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, +{ "pid": 28512, "tid": 1, "ts": 1689927256443933, "dur": 4511, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 28512, "tid": 1, "ts": 1689927256448450, "dur": 18481, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 28512, "tid": 1, "ts": 1689927256466940, "dur": 28688, "ph": "X", "name": "WriteJson", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256822890, "dur": 10, "ph": "X", "name": "", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256442248, "dur": 17920, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256460171, "dur": 349481, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256461023, "dur": 2431, "ph": "X", "name": "ReadAsync 0", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256463462, "dur": 1273, "ph": "X", "name": "ProcessMessages 20485", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256464738, "dur": 256, "ph": "X", "name": "ReadAsync 20485", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256464997, "dur": 12, "ph": "X", "name": "ProcessMessages 20512", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465010, "dur": 27, "ph": "X", "name": "ReadAsync 20512", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465040, "dur": 17, "ph": "X", "name": "ReadAsync 476", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465058, "dur": 16, "ph": "X", "name": "ReadAsync 282", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465077, "dur": 18, "ph": "X", "name": "ReadAsync 101", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465097, "dur": 18, "ph": "X", "name": "ReadAsync 257", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465117, "dur": 65, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465184, "dur": 172, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465367, "dur": 1, "ph": "X", "name": "ProcessMessages 304", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465369, "dur": 58, "ph": "X", "name": "ReadAsync 304", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465429, "dur": 2, "ph": "X", "name": "ProcessMessages 2417", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465433, "dur": 19, "ph": "X", "name": "ReadAsync 2417", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465455, "dur": 23, "ph": "X", "name": "ReadAsync 334", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465483, "dur": 1, "ph": "X", "name": "ProcessMessages 288", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465485, "dur": 23, "ph": "X", "name": "ReadAsync 288", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465511, "dur": 18, "ph": "X", "name": "ReadAsync 435", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465530, "dur": 18, "ph": "X", "name": "ReadAsync 222", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465550, "dur": 61, "ph": "X", "name": "ReadAsync 357", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465614, "dur": 1, "ph": "X", "name": "ProcessMessages 60", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465616, "dur": 38, "ph": "X", "name": "ReadAsync 60", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465657, "dur": 18, "ph": "X", "name": "ReadAsync 1065", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465677, "dur": 18, "ph": "X", "name": "ReadAsync 509", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465697, "dur": 16, "ph": "X", "name": "ReadAsync 269", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465716, "dur": 17, "ph": "X", "name": "ReadAsync 235", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465735, "dur": 17, "ph": "X", "name": "ReadAsync 343", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465755, "dur": 17, "ph": "X", "name": "ReadAsync 314", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465775, "dur": 16, "ph": "X", "name": "ReadAsync 280", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465794, "dur": 18, "ph": "X", "name": "ReadAsync 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465813, "dur": 1, "ph": "X", "name": "ProcessMessages 126", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465824, "dur": 35, "ph": "X", "name": "ReadAsync 126", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465862, "dur": 4, "ph": "X", "name": "ProcessMessages 493", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465868, "dur": 25, "ph": "X", "name": "ReadAsync 493", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465896, "dur": 14, "ph": "X", "name": "ReadAsync 411", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465912, "dur": 15, "ph": "X", "name": "ReadAsync 131", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465928, "dur": 16, "ph": "X", "name": "ReadAsync 188", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465946, "dur": 16, "ph": "X", "name": "ReadAsync 167", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465965, "dur": 15, "ph": "X", "name": "ReadAsync 176", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465982, "dur": 13, "ph": "X", "name": "ReadAsync 207", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256465997, "dur": 14, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466014, "dur": 16, "ph": "X", "name": "ReadAsync 40", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466032, "dur": 16, "ph": "X", "name": "ReadAsync 275", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466050, "dur": 20, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466074, "dur": 1, "ph": "X", "name": "ProcessMessages 161", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466076, "dur": 26, "ph": "X", "name": "ReadAsync 161", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466104, "dur": 15, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466122, "dur": 14, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466138, "dur": 17, "ph": "X", "name": "ReadAsync 132", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466157, "dur": 18, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466177, "dur": 13, "ph": "X", "name": "ReadAsync 260", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466192, "dur": 14, "ph": "X", "name": "ReadAsync 71", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466208, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466232, "dur": 14, "ph": "X", "name": "ReadAsync 339", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466248, "dur": 14, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466264, "dur": 13, "ph": "X", "name": "ReadAsync 137", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466279, "dur": 13, "ph": "X", "name": "ReadAsync 233", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466294, "dur": 13, "ph": "X", "name": "ReadAsync 192", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466309, "dur": 14, "ph": "X", "name": "ReadAsync 138", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466325, "dur": 13, "ph": "X", "name": "ReadAsync 137", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466340, "dur": 12, "ph": "X", "name": "ReadAsync 155", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466354, "dur": 17, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466373, "dur": 15, "ph": "X", "name": "ReadAsync 250", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466390, "dur": 13, "ph": "X", "name": "ReadAsync 235", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466405, "dur": 23, "ph": "X", "name": "ReadAsync 83", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466430, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466450, "dur": 20, "ph": "X", "name": "ReadAsync 340", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466474, "dur": 14, "ph": "X", "name": "ReadAsync 358", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466489, "dur": 15, "ph": "X", "name": "ReadAsync 157", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466506, "dur": 16, "ph": "X", "name": "ReadAsync 192", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466524, "dur": 15, "ph": "X", "name": "ReadAsync 229", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466541, "dur": 19, "ph": "X", "name": "ReadAsync 93", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466561, "dur": 15, "ph": "X", "name": "ReadAsync 260", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466579, "dur": 120, "ph": "X", "name": "ReadAsync 256", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466701, "dur": 1, "ph": "X", "name": "ProcessMessages 139", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466703, "dur": 31, "ph": "X", "name": "ReadAsync 139", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466735, "dur": 1, "ph": "X", "name": "ProcessMessages 1498", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466737, "dur": 15, "ph": "X", "name": "ReadAsync 1498", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466754, "dur": 14, "ph": "X", "name": "ReadAsync 174", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466770, "dur": 16, "ph": "X", "name": "ReadAsync 156", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466788, "dur": 14, "ph": "X", "name": "ReadAsync 125", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466804, "dur": 14, "ph": "X", "name": "ReadAsync 189", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466819, "dur": 12, "ph": "X", "name": "ReadAsync 220", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466834, "dur": 19, "ph": "X", "name": "ReadAsync 78", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466855, "dur": 21, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466879, "dur": 18, "ph": "X", "name": "ReadAsync 340", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466899, "dur": 23, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466924, "dur": 24, "ph": "X", "name": "ReadAsync 282", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466950, "dur": 17, "ph": "X", "name": "ReadAsync 324", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466969, "dur": 17, "ph": "X", "name": "ReadAsync 172", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256466988, "dur": 17, "ph": "X", "name": "ReadAsync 221", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467007, "dur": 18, "ph": "X", "name": "ReadAsync 199", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467027, "dur": 17, "ph": "X", "name": "ReadAsync 207", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467046, "dur": 16, "ph": "X", "name": "ReadAsync 238", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467064, "dur": 271, "ph": "X", "name": "ReadAsync 81", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467337, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467339, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467367, "dur": 1, "ph": "X", "name": "ProcessMessages 914", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467369, "dur": 16, "ph": "X", "name": "ReadAsync 914", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467388, "dur": 15, "ph": "X", "name": "ReadAsync 205", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467405, "dur": 14, "ph": "X", "name": "ReadAsync 140", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467421, "dur": 15, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467437, "dur": 14, "ph": "X", "name": "ReadAsync 208", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467454, "dur": 19, "ph": "X", "name": "ReadAsync 106", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467475, "dur": 14, "ph": "X", "name": "ReadAsync 256", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467492, "dur": 16, "ph": "X", "name": "ReadAsync 146", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467509, "dur": 16, "ph": "X", "name": "ReadAsync 176", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467528, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467552, "dur": 20, "ph": "X", "name": "ReadAsync 343", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467575, "dur": 23, "ph": "X", "name": "ReadAsync 241", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467600, "dur": 17, "ph": "X", "name": "ReadAsync 285", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467618, "dur": 17, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467637, "dur": 17, "ph": "X", "name": "ReadAsync 221", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467656, "dur": 18, "ph": "X", "name": "ReadAsync 194", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467676, "dur": 79, "ph": "X", "name": "ReadAsync 172", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467759, "dur": 1, "ph": "X", "name": "ProcessMessages 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467761, "dur": 50, "ph": "X", "name": "ReadAsync 249", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467813, "dur": 1, "ph": "X", "name": "ProcessMessages 987", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467816, "dur": 23, "ph": "X", "name": "ReadAsync 987", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467841, "dur": 18, "ph": "X", "name": "ReadAsync 372", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467861, "dur": 18, "ph": "X", "name": "ReadAsync 210", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467882, "dur": 17, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467901, "dur": 18, "ph": "X", "name": "ReadAsync 118", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467922, "dur": 18, "ph": "X", "name": "ReadAsync 174", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467942, "dur": 19, "ph": "X", "name": "ReadAsync 290", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467963, "dur": 20, "ph": "X", "name": "ReadAsync 242", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256467985, "dur": 21, "ph": "X", "name": "ReadAsync 86", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468008, "dur": 18, "ph": "X", "name": "ReadAsync 150", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468028, "dur": 18, "ph": "X", "name": "ReadAsync 246", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468048, "dur": 18, "ph": "X", "name": "ReadAsync 321", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468069, "dur": 17, "ph": "X", "name": "ReadAsync 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468088, "dur": 18, "ph": "X", "name": "ReadAsync 219", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468108, "dur": 17, "ph": "X", "name": "ReadAsync 239", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468128, "dur": 18, "ph": "X", "name": "ReadAsync 300", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468147, "dur": 19, "ph": "X", "name": "ReadAsync 130", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468168, "dur": 17, "ph": "X", "name": "ReadAsync 311", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468188, "dur": 16, "ph": "X", "name": "ReadAsync 257", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468206, "dur": 16, "ph": "X", "name": "ReadAsync 94", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468224, "dur": 17, "ph": "X", "name": "ReadAsync 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468243, "dur": 18, "ph": "X", "name": "ReadAsync 211", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468263, "dur": 17, "ph": "X", "name": "ReadAsync 244", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468282, "dur": 18, "ph": "X", "name": "ReadAsync 261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468303, "dur": 26, "ph": "X", "name": "ReadAsync 86", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468332, "dur": 1, "ph": "X", "name": "ProcessMessages 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468334, "dur": 98, "ph": "X", "name": "ReadAsync 224", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468435, "dur": 33, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468470, "dur": 1, "ph": "X", "name": "ProcessMessages 1079", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468472, "dur": 21, "ph": "X", "name": "ReadAsync 1079", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468495, "dur": 23, "ph": "X", "name": "ReadAsync 238", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468519, "dur": 17, "ph": "X", "name": "ReadAsync 377", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468539, "dur": 18, "ph": "X", "name": "ReadAsync 217", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468559, "dur": 57, "ph": "X", "name": "ReadAsync 227", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468623, "dur": 1, "ph": "X", "name": "ProcessMessages 197", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468626, "dur": 39, "ph": "X", "name": "ReadAsync 197", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468667, "dur": 1, "ph": "X", "name": "ProcessMessages 835", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468670, "dur": 28, "ph": "X", "name": "ReadAsync 835", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468701, "dur": 21, "ph": "X", "name": "ReadAsync 453", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468733, "dur": 18, "ph": "X", "name": "ReadAsync 342", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468752, "dur": 30, "ph": "X", "name": "ReadAsync 195", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468784, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468805, "dur": 18, "ph": "X", "name": "ReadAsync 242", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468825, "dur": 18, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468846, "dur": 18, "ph": "X", "name": "ReadAsync 185", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468865, "dur": 22, "ph": "X", "name": "ReadAsync 190", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468889, "dur": 16, "ph": "X", "name": "ReadAsync 271", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468907, "dur": 18, "ph": "X", "name": "ReadAsync 21", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468927, "dur": 18, "ph": "X", "name": "ReadAsync 246", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468948, "dur": 18, "ph": "X", "name": "ReadAsync 204", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468969, "dur": 19, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256468989, "dur": 18, "ph": "X", "name": "ReadAsync 293", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469009, "dur": 17, "ph": "X", "name": "ReadAsync 198", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469028, "dur": 17, "ph": "X", "name": "ReadAsync 173", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469048, "dur": 18, "ph": "X", "name": "ReadAsync 146", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469067, "dur": 20, "ph": "X", "name": "ReadAsync 227", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469089, "dur": 17, "ph": "X", "name": "ReadAsync 196", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469108, "dur": 16, "ph": "X", "name": "ReadAsync 159", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469126, "dur": 18, "ph": "X", "name": "ReadAsync 124", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469146, "dur": 18, "ph": "X", "name": "ReadAsync 206", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469166, "dur": 18, "ph": "X", "name": "ReadAsync 255", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469186, "dur": 17, "ph": "X", "name": "ReadAsync 268", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469205, "dur": 18, "ph": "X", "name": "ReadAsync 87", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469225, "dur": 20, "ph": "X", "name": "ReadAsync 226", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469248, "dur": 18, "ph": "X", "name": "ReadAsync 208", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469268, "dur": 20, "ph": "X", "name": "ReadAsync 177", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469291, "dur": 1, "ph": "X", "name": "ProcessMessages 191", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469294, "dur": 33, "ph": "X", "name": "ReadAsync 191", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469329, "dur": 1, "ph": "X", "name": "ProcessMessages 265", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469331, "dur": 17, "ph": "X", "name": "ReadAsync 265", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469352, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469374, "dur": 17, "ph": "X", "name": "ReadAsync 396", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469394, "dur": 72, "ph": "X", "name": "ReadAsync 332", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469469, "dur": 1, "ph": "X", "name": "ProcessMessages 223", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469472, "dur": 43, "ph": "X", "name": "ReadAsync 223", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469517, "dur": 1, "ph": "X", "name": "ProcessMessages 1261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469520, "dur": 21, "ph": "X", "name": "ReadAsync 1261", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469543, "dur": 15, "ph": "X", "name": "ReadAsync 347", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469560, "dur": 17, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469580, "dur": 19, "ph": "X", "name": "ReadAsync 269", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469603, "dur": 17, "ph": "X", "name": "ReadAsync 232", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469622, "dur": 17, "ph": "X", "name": "ReadAsync 244", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469640, "dur": 1, "ph": "X", "name": "ProcessMessages 253", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469642, "dur": 19, "ph": "X", "name": "ReadAsync 253", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469663, "dur": 19, "ph": "X", "name": "ReadAsync 225", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469684, "dur": 32, "ph": "X", "name": "ReadAsync 184", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469719, "dur": 1, "ph": "X", "name": "ProcessMessages 266", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469721, "dur": 84, "ph": "X", "name": "ReadAsync 266", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469808, "dur": 1, "ph": "X", "name": "ProcessMessages 598", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469811, "dur": 83, "ph": "X", "name": "ReadAsync 598", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469895, "dur": 1, "ph": "X", "name": "ProcessMessages 995", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256469897, "dur": 3095, "ph": "X", "name": "ReadAsync 995", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256472995, "dur": 3, "ph": "X", "name": "ProcessMessages 857", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473000, "dur": 333, "ph": "X", "name": "ReadAsync 857", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473336, "dur": 319, "ph": "X", "name": "ProcessMessages 20486", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473657, "dur": 46, "ph": "X", "name": "ReadAsync 20486", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473706, "dur": 3, "ph": "X", "name": "ProcessMessages 468", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473710, "dur": 48, "ph": "X", "name": "ReadAsync 468", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473762, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473765, "dur": 25, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473792, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473794, "dur": 21, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256473819, "dur": 284, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474105, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474124, "dur": 145, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474273, "dur": 1, "ph": "X", "name": "ProcessMessages 144", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256474275, "dur": 4580, "ph": "X", "name": "ReadAsync 144", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478861, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478865, "dur": 55, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478923, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256478925, "dur": 99, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479027, "dur": 24, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479053, "dur": 429, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479485, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479487, "dur": 81, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479571, "dur": 1, "ph": "X", "name": "ProcessMessages 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479574, "dur": 34, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479610, "dur": 268, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479882, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479884, "dur": 53, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479940, "dur": 21, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479962, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256479964, "dur": 74, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480041, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480064, "dur": 70, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480138, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480158, "dur": 117, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480278, "dur": 49, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480331, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480334, "dur": 86, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480422, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480442, "dur": 44, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480487, "dur": 15, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480504, "dur": 15, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480522, "dur": 56, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480580, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480599, "dur": 391, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480995, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256480997, "dur": 33, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481031, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481032, "dur": 18, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481054, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481075, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481094, "dur": 21, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481117, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481118, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481138, "dur": 17, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481157, "dur": 17, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481176, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481195, "dur": 17, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481214, "dur": 83, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481302, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481305, "dur": 89, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481395, "dur": 1, "ph": "X", "name": "ProcessMessages 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481396, "dur": 33, "ph": "X", "name": "ReadAsync 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481433, "dur": 2, "ph": "X", "name": "ProcessMessages 96", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481436, "dur": 38, "ph": "X", "name": "ReadAsync 96", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481477, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481499, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481519, "dur": 37, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481558, "dur": 24, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481585, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481612, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481640, "dur": 31, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481675, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481678, "dur": 49, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481733, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481763, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481790, "dur": 37, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481831, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481834, "dur": 35, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481872, "dur": 22, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481897, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481923, "dur": 26, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481949, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481952, "dur": 19, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256481972, "dur": 25, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482001, "dur": 84, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482087, "dur": 22, "ph": "X", "name": "ReadAsync 28", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482112, "dur": 16, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482129, "dur": 469, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482602, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482604, "dur": 56, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482661, "dur": 1, "ph": "X", "name": "ProcessMessages 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482663, "dur": 20, "ph": "X", "name": "ReadAsync 80", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482685, "dur": 216, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482905, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482906, "dur": 42, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482950, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256482952, "dur": 230, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483187, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483190, "dur": 95, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483289, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483291, "dur": 20, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483313, "dur": 129, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483447, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483449, "dur": 25, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483476, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256483478, "dur": 555, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484036, "dur": 2, "ph": "X", "name": "ProcessMessages 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484039, "dur": 43, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484087, "dur": 1, "ph": "X", "name": "ProcessMessages 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484090, "dur": 42, "ph": "X", "name": "ReadAsync 128", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484134, "dur": 61, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484198, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484200, "dur": 308, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484513, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484515, "dur": 117, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484634, "dur": 1, "ph": "X", "name": "ProcessMessages 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484636, "dur": 31, "ph": "X", "name": "ReadAsync 112", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484671, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484673, "dur": 218, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484895, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484897, "dur": 43, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484946, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484948, "dur": 24, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256484973, "dur": 3422, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256488406, "dur": 632, "ph": "X", "name": "ProcessMessages 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256489042, "dur": 220788, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709837, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709840, "dur": 35, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256709876, "dur": 6953, "ph": "X", "name": "ProcessMessages 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716834, "dur": 68, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716907, "dur": 22, "ph": "X", "name": "ProcessMessages 66", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256716930, "dur": 84693, "ph": "X", "name": "ReadAsync 66", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801629, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801631, "dur": 26, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801658, "dur": 1, "ph": "X", "name": "ProcessMessages 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256801660, "dur": 1099, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802764, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802767, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802803, "dur": 18, "ph": "X", "name": "ProcessMessages 50", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256802821, "dur": 658, "ph": "X", "name": "ReadAsync 50", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803483, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803485, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803516, "dur": 428, "ph": "X", "name": "ProcessMessages 13", "args": {} }, +{ "pid": 28512, "tid": 12884901888, "ts": 1689927256803947, "dur": 5639, "ph": "X", "name": "ReadAsync 13", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256822902, "dur": 508, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256439623, "dur": 56089, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256495715, "dur": 5, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} }, +{ "pid": 28512, "tid": 8589934592, "ts": 1689927256495722, "dur": 1256, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256823412, "dur": 5, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256421154, "dur": 389629, "ph": "X", "name": "RunBackend", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256425635, "dur": 7036, "ph": "X", "name": "BackendProgram.Start", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256810800, "dur": 4733, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256813403, "dur": 209, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, +{ "pid": 28512, "tid": 4294967296, "ts": 1689927256815620, "dur": 137, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256823423, "dur": 5, "ph": "X", "name": "BuildAsync", "args": {} }, { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1689919801127787, "dur":77, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801127898, "dur":1692, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801129602, "dur":339, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801130025, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801130883, "dur":83, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801131539, "dur":54, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_E49832A1C5CC5CC3.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801133947, "dur":68, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801134111, "dur":62, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp2" }} -,{ "pid":12345, "tid":0, "ts":1689919801134621, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":0, "ts":1689919801137541, "dur":889, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":0, "ts":1689919801138730, "dur":208, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.rsp2" }} -,{ "pid":12345, "tid":0, "ts":1689919801138940, "dur":61, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801139440, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689919801130618, "dur":12344, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801142970, "dur":381086, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524059, "dur":360, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524542, "dur":62, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801524617, "dur":739, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1689919801130510, "dur":12468, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801142998, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143170, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_0214FE25B23C7DED.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143285, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll" }} -,{ "pid":12345, "tid":1, "ts":1689919801143284, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801143698, "dur":1159, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_CD6842F2F41DDFA6.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689919801144890, "dur":59, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1689919801144957, "dur":1006, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1689919801145963, "dur":3379, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.State\\StateExitReason.cs" }} -,{ "pid":12345, "tid":1, "ts":1689919801145963, "dur":3624, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801149588, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801149768, "dur":529, "ph":"X", "name": "File", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.dll" }} -,{ "pid":12345, "tid":1, "ts":1689919801149734, "dur":811, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801150545, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801150919, "dur":482, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801151401, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801151998, "dur":545, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689919801152703, "dur":281, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801152985, "dur":510, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153495, "dur":98, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153635, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153733, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801153905, "dur":231, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154136, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154494, "dur":499, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801154993, "dur":136, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155130, "dur":368, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155498, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801155871, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156254, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156645, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689919801156925, "dur":367230, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801130547, "dur":12458, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801143009, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801143153, "dur":634, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_5F4C3310920844E1.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801143804, "dur":2110, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_664D4C91807F8DF4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801145916, "dur":3475, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801145916, "dur":4046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801149962, "dur":295, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801150258, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801150925, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801151429, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801151730, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801151856, "dur":506, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":2, "ts":1689919801151855, "dur":996, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689919801152851, "dur":720, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801153588, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801153794, "dur":346, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689919801154449, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageReporterListener.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801154546, "dur":147, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Events\\SessionMode.cs" }} -,{ "pid":12345, "tid":2, "ts":1689919801154154, "dur":570, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689919801155170, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801155284, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801155885, "dur":357, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156242, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156562, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156633, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689919801156947, "dur":367162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801130581, "dur":12431, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801143178, "dur":163, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_5C7E93297DF7ED6C.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143627, "dur":50, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_1CF7D2088BFDF0A4.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143678, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll" }} -,{ "pid":12345, "tid":3, "ts":1689919801143677, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_8A18AA472BD1B355.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801143764, "dur":472, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_8A18AA472BD1B355.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801144239, "dur":302, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":3, "ts":1689919801144237, "dur":515, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801144776, "dur":1146, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689919801145924, "dur":4071, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} -,{ "pid":12345, "tid":3, "ts":1689919801145924, "dur":4354, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801150278, "dur":665, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801150943, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801151418, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152243, "dur":132, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152376, "dur":242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152618, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152700, "dur":285, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801152985, "dur":498, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153483, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153723, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801153942, "dur":175, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154117, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154510, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801154968, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155142, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155475, "dur":404, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801155879, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156249, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156651, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689919801156935, "dur":367188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801130599, "dur":12445, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801143172, "dur":1116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_89F882D7BFAFB049.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689919801144296, "dur":523, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801144820, "dur":298, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp2" }} -,{ "pid":12345, "tid":4, "ts":1689919801145342, "dur":609, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} -,{ "pid":12345, "tid":4, "ts":1689919801145952, "dur":4298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689919801150295, "dur":490, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1689919801150878, "dur":552, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801151431, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152252, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152372, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152739, "dur":165, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801152908, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153014, "dur":759, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153773, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801153939, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154174, "dur":347, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154521, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801154958, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155043, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155174, "dur":809, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801155983, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156222, "dur":441, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156663, "dur":242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689919801156946, "dur":367184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801130621, "dur":12559, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801143236, "dur":68, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_76A56C3B97129D6B.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801143306, "dur":451, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801143305, "dur":453, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_E922729EEA99648E.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801143766, "dur":495, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_E922729EEA99648E.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801144263, "dur":553, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801144262, "dur":556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801144826, "dur":274, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801145144, "dur":56, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} -,{ "pid":12345, "tid":5, "ts":1689919801145396, "dur":190, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801145586, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801145718, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146035, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146189, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146352, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146519, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146653, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146786, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801146922, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147050, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147184, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147329, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147466, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147608, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801147748, "dur":1850, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Optimization\\Action_5.cs" }} -,{ "pid":12345, "tid":5, "ts":1689919801147739, "dur":2608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801150347, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801150943, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801151429, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801151765, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801151839, "dur":425, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801152365, "dur":347, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801152950, "dur":65, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll" }} -,{ "pid":12345, "tid":5, "ts":1689919801152276, "dur":867, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689919801153143, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801153266, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689919801153811, "dur":599, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689919801154485, "dur":653, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801155250, "dur":652, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801155902, "dur":363, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156265, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156589, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156654, "dur":317, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689919801156971, "dur":367059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801130725, "dur":12485, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801143295, "dur":447, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} -,{ "pid":12345, "tid":6, "ts":1689919801143287, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801143751, "dur":455, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801144210, "dur":265, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801144207, "dur":270, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801144632, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} -,{ "pid":12345, "tid":6, "ts":1689919801144779, "dur":155, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp2" }} -,{ "pid":12345, "tid":6, "ts":1689919801144947, "dur":440, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1689919801145388, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801145572, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801145984, "dur":3990, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\DirectorNamedColor.cs" }} -,{ "pid":12345, "tid":6, "ts":1689919801145716, "dur":4275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801149991, "dur":535, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801150526, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801150960, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801151388, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801151884, "dur":188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801152369, "dur":350, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801152962, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.CompilerServices.VisualC.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801153295, "dur":58, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\VersionPair.cs" }} -,{ "pid":12345, "tid":6, "ts":1689919801152123, "dur":1278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801153401, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801153570, "dur":642, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801154217, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801154490, "dur":665, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801155173, "dur":86, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689919801155260, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801155378, "dur":642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156109, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156200, "dur":369, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156611, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156673, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801156915, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689919801156979, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801157563, "dur":301647, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689919801460444, "dur":62458, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801460443, "dur":62461, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1689919801522929, "dur":1045, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801130744, "dur":12479, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801143292, "dur":485, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801143291, "dur":487, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689919801143785, "dur":492, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689919801144286, "dur":537, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801144824, "dur":286, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1689919801145376, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145508, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145670, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801145831, "dur":3773, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Actions\\ClipAction.cs" }} -,{ "pid":12345, "tid":7, "ts":1689919801145805, "dur":4074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801149880, "dur":346, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801150226, "dur":723, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801150950, "dur":416, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801151366, "dur":870, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152236, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152378, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152732, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801152967, "dur":105, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801152966, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1689919801153074, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153173, "dur":600, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153773, "dur":159, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801153932, "dur":248, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801154180, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801154515, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801155231, "dur":675, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801155906, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156267, "dur":315, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156582, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156669, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801156908, "dur":303538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689919801460450, "dur":117, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801460449, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801460592, "dur":931, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":7, "ts":1689919801461528, "dur":62562, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801130787, "dur":12530, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801143330, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll" }} -,{ "pid":12345, "tid":8, "ts":1689919801143322, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_92D3D9EBA736C362.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801143391, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801143651, "dur":222, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_4B0DFA523C048167.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801143875, "dur":275, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll" }} -,{ "pid":12345, "tid":8, "ts":1689919801143874, "dur":277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801144158, "dur":1741, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689919801145901, "dur":2064, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} -,{ "pid":12345, "tid":8, "ts":1689919801145901, "dur":2199, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148100, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148251, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148382, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148522, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801148659, "dur":608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149268, "dur":328, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149597, "dur":160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149757, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801149910, "dur":611, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801150521, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801150955, "dur":408, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801151381, "dur":847, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152229, "dur":149, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152378, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152720, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801152974, "dur":850, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801153824, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801153923, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801154186, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801154509, "dur":666, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801155175, "dur":753, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801155929, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156229, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156657, "dur":303, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689919801156960, "dur":367122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801130822, "dur":12503, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801143589, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801143691, "dur":509, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_2633F89DBA36C760.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689919801144202, "dur":278, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} -,{ "pid":12345, "tid":9, "ts":1689919801144201, "dur":281, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689919801144791, "dur":1144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":9, "ts":1689919801145935, "dur":4125, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} -,{ "pid":12345, "tid":9, "ts":1689919801145935, "dur":4381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801150316, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801150897, "dur":489, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801151387, "dur":984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152371, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152745, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801152967, "dur":860, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801153827, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801153894, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154007, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154173, "dur":350, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801154523, "dur":712, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801155235, "dur":638, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801155873, "dur":285, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156158, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156619, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689919801156942, "dur":367219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801130862, "dur":12867, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801143734, "dur":665, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801144424, "dur":1467, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801145892, "dur":2077, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} -,{ "pid":12345, "tid":10, "ts":1689919801145892, "dur":2336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148228, "dur":139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148367, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148497, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801148689, "dur":607, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\IncomingChangesNotifier.cs" }} -,{ "pid":12345, "tid":10, "ts":1689919801148629, "dur":740, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149369, "dur":105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149474, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149613, "dur":248, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801149861, "dur":291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801150192, "dur":713, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801150905, "dur":472, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801151377, "dur":494, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801151872, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801151956, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689919801152331, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801152684, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801152967, "dur":530, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801153498, "dur":178, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801153676, "dur":424, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801154100, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801154481, "dur":523, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155005, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155098, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155232, "dur":644, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801155876, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156113, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689919801156221, "dur":253, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689919801156551, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156642, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689919801156910, "dur":367140, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801130891, "dur":12898, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801143815, "dur":489, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_4368F8031B7A5340.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801144311, "dur":518, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801144829, "dur":53, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1689919801144895, "dur":93, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp2" }} -,{ "pid":12345, "tid":11, "ts":1689919801145400, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145551, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145702, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801145836, "dur":304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146140, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146304, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146459, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146600, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146729, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146856, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801146978, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147114, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147247, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147379, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147520, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147652, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147798, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801147934, "dur":156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148090, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148230, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148357, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148484, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801148613, "dur":611, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149224, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149355, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149496, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149658, "dur":148, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149807, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801149992, "dur":292, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801150284, "dur":617, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801150901, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801151377, "dur":492, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801151870, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801151959, "dur":817, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689919801152833, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689919801152953, "dur":57, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll" }} -,{ "pid":12345, "tid":11, "ts":1689919801153145, "dur":291, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":11, "ts":1689919801152916, "dur":742, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689919801153696, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154092, "dur":400, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154492, "dur":494, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801154986, "dur":122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155109, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155251, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801155853, "dur":345, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156199, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156573, "dur":58, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156631, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689919801156921, "dur":367126, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801130931, "dur":12878, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801143836, "dur":499, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PropertiesModule.dll_11E676DD84C6B6CA.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801144569, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689919801144781, "dur":380, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1689919801145381, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145512, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145654, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801145813, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146109, "dur":191, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146301, "dur":166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146467, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146611, "dur":186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146797, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801146932, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147084, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147248, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147402, "dur":148, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147551, "dur":212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147763, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801147891, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148074, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148220, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148356, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148481, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801148615, "dur":586, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149201, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149338, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149466, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149611, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801149754, "dur":608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801150362, "dur":497, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801150881, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801151389, "dur":377, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801151767, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801151832, "dur":802, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801152640, "dur":608, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689919801153248, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801153371, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689919801153460, "dur":578, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689919801154080, "dur":431, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801154511, "dur":440, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801154965, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155119, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155175, "dur":712, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801155888, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156093, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156209, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156562, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156641, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689919801156920, "dur":367126, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801130946, "dur":12868, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801143846, "dur":522, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_F21F01A360D39C6F.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801144424, "dur":50, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Dependencies\\DotNetZip\\Unity.VisualScripting.IonicZip.dll" }} -,{ "pid":12345, "tid":13, "ts":1689919801144423, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_3753AE2E22DD17B6.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801144505, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801144746, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689919801144881, "dur":54, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689919801145106, "dur":963, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146082, "dur":388, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146470, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146608, "dur":139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146748, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801146880, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147022, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147225, "dur":150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147376, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147511, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147642, "dur":166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801147945, "dur":1874, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Listeners\\MonoBehaviour\\UnityOnMouseUpAsButtonMessageListener.cs" }} -,{ "pid":12345, "tid":13, "ts":1689919801147808, "dur":2058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801149867, "dur":598, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801150466, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801150863, "dur":547, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801151410, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801151731, "dur":200, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} -,{ "pid":12345, "tid":13, "ts":1689919801151954, "dur":633, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} -,{ "pid":12345, "tid":13, "ts":1689919801152588, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801152694, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801152991, "dur":477, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153469, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153730, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801153925, "dur":198, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154123, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154502, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801154975, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155136, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155476, "dur":402, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801155879, "dur":373, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156253, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156638, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689919801156939, "dur":367178, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801131014, "dur":12857, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801144087, "dur":1271, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_3CC371F904BF0C12.mvfrm" }} -,{ "pid":12345, "tid":14, "ts":1689919801145438, "dur":191, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801145629, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801145769, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146077, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146245, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146402, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146561, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146687, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146816, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801146938, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801147156, "dur":2823, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_4.cs" }} -,{ "pid":12345, "tid":14, "ts":1689919801147061, "dur":3000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150099, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150232, "dur":699, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801150931, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801151398, "dur":953, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152351, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152629, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152697, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801152989, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153475, "dur":248, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153724, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801153924, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154130, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154500, "dur":478, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801154979, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155131, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155485, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801155867, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156260, "dur":337, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156621, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689919801156950, "dur":367115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801131040, "dur":12835, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801143896, "dur":1027, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801144923, "dur":61, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_CDD7AA2F334AE808.mvfrm" }} -,{ "pid":12345, "tid":15, "ts":1689919801145072, "dur":785, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":15, "ts":1689919801145857, "dur":390, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801146248, "dur":212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801146523, "dur":552, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Math\\Vector4\\Vector4Divide.cs" }} -,{ "pid":12345, "tid":15, "ts":1689919801146460, "dur":772, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147232, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147365, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147499, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147641, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147777, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801147908, "dur":140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148048, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148187, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148315, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148443, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801148579, "dur":606, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149185, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149317, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149458, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149636, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149782, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801149927, "dur":435, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150362, "dur":481, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150850, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801150948, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801151417, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801151813, "dur":697, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":15, "ts":1689919801152511, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801152846, "dur":200, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.dll" }} -,{ "pid":12345, "tid":15, "ts":1689919801152587, "dur":753, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":15, "ts":1689919801153421, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801153737, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801153944, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154111, "dur":403, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154514, "dur":453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801154967, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801155233, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801155888, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156238, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156572, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156627, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689919801156948, "dur":367164, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801131085, "dur":12793, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801143920, "dur":427, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801144420, "dur":1441, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":16, "ts":1689919801145862, "dur":1896, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} -,{ "pid":12345, "tid":16, "ts":1689919801145862, "dur":2022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801147950, "dur":2069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Listeners\\MonoBehaviour\\UnityOnCollisionExit2DMessageListener.cs" }} -,{ "pid":12345, "tid":16, "ts":1689919801147884, "dur":2411, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801150296, "dur":594, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801150890, "dur":498, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801151389, "dur":979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152368, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152674, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801152978, "dur":480, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153458, "dur":105, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153635, "dur":73, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153708, "dur":158, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801153891, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":16, "ts":1689919801154051, "dur":985, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":16, "ts":1689919801155086, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801155231, "dur":653, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801155884, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156101, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156630, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689919801156931, "dur":367114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801131134, "dur":12797, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801144054, "dur":134, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_055771F30FC741C8.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144190, "dur":244, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll" }} -,{ "pid":12345, "tid":17, "ts":1689919801144189, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144458, "dur":397, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\EditorAssetResources\\Unity.VisualScripting.TextureAssets.dll" }} -,{ "pid":12345, "tid":17, "ts":1689919801144457, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_51095754C66FE99E.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801144892, "dur":991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp2" }} -,{ "pid":12345, "tid":17, "ts":1689919801145884, "dur":2270, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\RiderScriptEditorDataPersisted.cs" }} -,{ "pid":12345, "tid":17, "ts":1689919801148155, "dur":1593, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\RiderScriptEditorData.cs" }} -,{ "pid":12345, "tid":17, "ts":1689919801145884, "dur":3996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801149880, "dur":290, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801150176, "dur":732, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801150908, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801151375, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801151890, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":17, "ts":1689919801152037, "dur":463, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":17, "ts":1689919801152617, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801152681, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801152973, "dur":496, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801153470, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801153707, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154088, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154497, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801154984, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155109, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155243, "dur":621, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801155865, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156177, "dur":407, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156608, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689919801156943, "dur":367084, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801131156, "dur":12911, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801144117, "dur":743, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_88E5B84BFC4A9BCE.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689919801144908, "dur":997, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} -,{ "pid":12345, "tid":18, "ts":1689919801145905, "dur":4069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} -,{ "pid":12345, "tid":18, "ts":1689919801145905, "dur":4526, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150431, "dur":415, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150846, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801150913, "dur":452, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801151365, "dur":780, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152146, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152374, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152672, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801152979, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801153447, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801153659, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801154103, "dur":350, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801154469, "dur":554, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155108, "dur":155, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155263, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801155862, "dur":326, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156188, "dur":395, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156598, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689919801156954, "dur":367070, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801131173, "dur":12925, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801144139, "dur":1801, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_D9BB49866713720B.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801145943, "dur":4388, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801150347, "dur":488, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801150881, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801150951, "dur":375, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801151374, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801151436, "dur":239, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801151725, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801151853, "dur":306, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll" }} -,{ "pid":12345, "tid":19, "ts":1689919801152414, "dur":298, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll" }} -,{ "pid":12345, "tid":19, "ts":1689919801153144, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsIgnoreAttribute.cs" }} -,{ "pid":12345, "tid":19, "ts":1689919801151811, "dur":2011, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801153890, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801153974, "dur":780, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801155258, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":19, "ts":1689919801155449, "dur":316, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":19, "ts":1689919801155876, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156147, "dur":472, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156620, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689919801156932, "dur":367106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801131216, "dur":12908, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801144146, "dur":1727, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_5F6CDEBA52F30836.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801145875, "dur":2096, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":20, "ts":1689919801145875, "dur":2299, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148175, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148333, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801148544, "dur":620, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149164, "dur":260, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149424, "dur":459, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801149884, "dur":449, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801150333, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801150893, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801151401, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801151871, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801151949, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689919801152034, "dur":430, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689919801152500, "dur":874, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153436, "dur":298, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153735, "dur":159, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801153894, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154156, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154455, "dur":541, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801154996, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155123, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155532, "dur":359, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801155891, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156231, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156600, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689919801156953, "dur":367102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689919801527668, "dur":1538, "ph":"X", "name": "ProfilerWriteOutput" } -,{ "pid": 18648, "tid": 3185, "ts": 1689919801530846, "dur": 852, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801531732, "dur": 11696, "ph": "X", "name": "backend1.traceevents", "args": {} }, -{ "pid": 18648, "tid": 3185, "ts": 1689919801529816, "dur": 13658, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +,{ "pid":12345, "tid":0, "ts":1689927256457076, "dur":74, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256457181, "dur":1437, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458629, "dur":230, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256458928, "dur":573, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256460785, "dur":1395, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689927256463632, "dur":758, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689927256464783, "dur":60, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":0, "ts":1689927256467703, "dur":52, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689927256459522, "dur":11259, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256470793, "dur":331487, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802281, "dur":271, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802552, "dur":89, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802801, "dur":57, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256802874, "dur":1051, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689927256459543, "dur":11333, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256471386, "dur":76, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256471385, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256471530, "dur":1479, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":1, "ts":1689927256473011, "dur":125, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256473525, "dur":175, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256473992, "dur":1695, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256475908, "dur":90, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":1, "ts":1689927256476221, "dur":1847, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\EventTriggerType.cs" }} +,{ "pid":12345, "tid":1, "ts":1689927256473171, "dur":5062, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256478296, "dur":639, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256478935, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256479350, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256479441, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256480164, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256480705, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689927256480855, "dur":143, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256481010, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1689927256482040, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482273, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482559, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256482811, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483001, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483463, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256483926, "dur":367, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689927256484293, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256459591, "dur":11415, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471072, "dur":187, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256471071, "dur":191, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_DDF441E8964B73A7.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471329, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256471416, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256471554, "dur":169, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1689927256471832, "dur":1719, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp2" }} +,{ "pid":12345, "tid":2, "ts":1689927256473552, "dur":438, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":2047, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\MemberUnitOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256476270, "dur":1451, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Codebase\\GetMemberOption.cs" }} +,{ "pid":12345, "tid":2, "ts":1689927256473990, "dur":3804, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256477883, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478015, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478299, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256478929, "dur":528, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256479458, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689927256480754, "dur":82, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll" }} +,{ "pid":12345, "tid":2, "ts":1689927256480380, "dur":710, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689927256481223, "dur":146, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481369, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256481449, "dur":605, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482054, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482301, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482584, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482848, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256482989, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483463, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256483914, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689927256484285, "dur":318000, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256459510, "dur":11313, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256470850, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256471050, "dur":275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471397, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256471614, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471678, "dur":161, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256471878, "dur":854, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1689927256472936, "dur":153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473090, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473244, "dur":204, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473448, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473756, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256473921, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474119, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474330, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474519, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474680, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256474862, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475083, "dur":206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475289, "dur":219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475508, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475757, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256475985, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Welcome\\WelcomeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689927256476269, "dur":787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477056, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477231, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477401, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477572, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256477739, "dur":308, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478047, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478324, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256478951, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256479335, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256479448, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256479902, "dur":471, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256480425, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256480651, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256481388, "dur":59, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256481447, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482049, "dur":263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482312, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482588, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482842, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256482990, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256483441, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689927256483541, "dur":276, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1689927256483925, "dur":333, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689927256484288, "dur":318076, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256459537, "dur":11312, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256470852, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471192, "dur":314, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256471506, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_1122BECC8220CC33.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256471566, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":4, "ts":1689927256471797, "dur":1416, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp2" }} +,{ "pid":12345, "tid":4, "ts":1689927256473495, "dur":507, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\treeview\\AnimationTrackKeyDataSource.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256473227, "dur":840, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256474208, "dur":957, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Ports\\IUnitOutputPortDefinition.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256474068, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256475298, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476087, "dur":757, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Operators\\OperatorUtility.cs" }} +,{ "pid":12345, "tid":4, "ts":1689927256475560, "dur":1381, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256476942, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477126, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477288, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477456, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477608, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256477763, "dur":393, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478156, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478298, "dur":657, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256478955, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256479460, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689927256479694, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1689927256480422, "dur":276, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480710, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480813, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256480948, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481229, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481337, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256481460, "dur":578, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482038, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482282, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482587, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256482845, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483018, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483451, "dur":473, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256483924, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689927256484281, "dur":318031, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256459585, "dur":11413, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256471014, "dur":331, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll" }} +,{ "pid":12345, "tid":5, "ts":1689927256471003, "dur":345, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471390, "dur":80, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":5, "ts":1689927256471372, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471491, "dur":115, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1689927256471888, "dur":1724, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":638, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256473613, "dur":856, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474470, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474719, "dur":267, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256474986, "dur":243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475230, "dur":264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475494, "dur":317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256475812, "dur":412, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256476267, "dur":756, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageFormats\\OpenCover\\Model\\SummarySkippedEntity.cs" }} +,{ "pid":12345, "tid":5, "ts":1689927256476224, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477340, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477549, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256477759, "dur":362, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478122, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478290, "dur":670, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256478960, "dur":733, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256479693, "dur":707, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480405, "dur":311, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480805, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256480943, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481236, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481370, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256481454, "dur":588, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482042, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482275, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482589, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256482821, "dur":194, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483015, "dur":386, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483450, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256483925, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689927256484295, "dur":318004, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256459619, "dur":11412, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471035, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_B23CD6D978C4136B.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256471217, "dur":307, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256471549, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471669, "dur":209, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256471904, "dur":1715, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1390, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Flow\\StateUnitWidget.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256473620, "dur":1638, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475258, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475489, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256475751, "dur":284, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256476260, "dur":710, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Playables\\DirectorControlPlayable.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256476035, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256477125, "dur":641, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\UI\\ScreenResolution.cs" }} +,{ "pid":12345, "tid":6, "ts":1689927256477036, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478164, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478299, "dur":654, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256478953, "dur":399, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256479353, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689927256479823, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689927256480600, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480716, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480808, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256480937, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481236, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481369, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256481447, "dur":582, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482030, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482289, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482576, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256482826, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483011, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483445, "dur":486, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256483931, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256484260, "dur":12914, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689927256497175, "dur":305102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256459639, "dur":11429, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471072, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689927256471400, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256471539, "dur":181, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1689927256471844, "dur":1714, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp2" }} +,{ "pid":12345, "tid":7, "ts":1689927256473985, "dur":1067, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\StartUpMethodExecutor.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256473559, "dur":1520, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475079, "dur":305, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475384, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256475646, "dur":419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476272, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Evaluation\\ScheduleRuntimeClip.cs" }} +,{ "pid":12345, "tid":7, "ts":1689927256476065, "dur":843, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256476908, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477114, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477346, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477525, "dur":216, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256477741, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478016, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478309, "dur":643, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256478952, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256479473, "dur":968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480593, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480717, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480842, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256480950, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481210, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481363, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256481450, "dur":595, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482045, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482312, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482562, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256482845, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483002, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483452, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689927256484297, "dur":318057, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256459759, "dur":11323, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256471383, "dur":79, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":8, "ts":1689927256471381, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689927256471507, "dur":2091, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":643, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256473600, "dur":898, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474499, "dur":250, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256474749, "dur":270, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475019, "dur":297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256475317, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256476259, "dur":913, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Macros\\Macro.cs" }} +,{ "pid":12345, "tid":8, "ts":1689927256475576, "dur":1596, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477173, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477429, "dur":221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256477650, "dur":673, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478324, "dur":618, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256478943, "dur":532, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256479475, "dur":964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480466, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480551, "dur":56, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480607, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480709, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480815, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256480930, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481238, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481383, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256481449, "dur":598, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482048, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482267, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482571, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256482833, "dur":176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483009, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483448, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256483931, "dur":365, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689927256484296, "dur":318039, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256459781, "dur":11385, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471327, "dur":76, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_35574052A2A89F4F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256471444, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256471531, "dur":1629, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":9, "ts":1689927256473176, "dur":62, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256473536, "dur":469, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll" }} +,{ "pid":12345, "tid":9, "ts":1689927256474930, "dur":86, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnhandledLogMessageException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475017, "dur":188, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Assertions\\UnityTestTimeoutException.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256475640, "dur":474, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\IAsyncTestAssemblyBuilder.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256476254, "dur":1172, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\NUnitExtensions\\Runner\\RestoreTestContextAfterDomainReload.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477837, "dur":52, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\IScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256477890, "dur":135, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\PlayerTestAssemblyProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256478026, "dur":78, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.test-framework@1.1.33\\UnityEngine.TestRunner\\Utils\\AssemblyProvider\\ScriptingRuntimeProxy.cs" }} +,{ "pid":12345, "tid":9, "ts":1689927256473161, "dur":5023, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478314, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478393, "dur":420, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256478880, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256478976, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256479327, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256479543, "dur":1610, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256481242, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256481400, "dur":1088, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482559, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689927256482642, "dur":295, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1689927256482995, "dur":460, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483455, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256483954, "dur":306, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256484260, "dur":226330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689927256710594, "dur":163, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710592, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256710786, "dur":1167, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1689927256711957, "dur":90310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256459816, "dur":11356, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471315, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256471545, "dur":1195, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_1202549BEDFB9D5D.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256472744, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256473002, "dur":403, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473405, "dur":351, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256473757, "dur":257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256474203, "dur":965, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Events\\EventUnitWidget.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256474014, "dur":1792, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256475833, "dur":2233, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\fsObjectAttribute.cs" }} +,{ "pid":12345, "tid":10, "ts":1689927256475806, "dur":2410, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478216, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478278, "dur":60, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":10, "ts":1689927256478339, "dur":529, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256478928, "dur":537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256479465, "dur":385, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1689927256479891, "dur":760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1689927256480652, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480794, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256480964, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481223, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481339, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256481472, "dur":568, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482040, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482290, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482548, "dur":294, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482842, "dur":145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256482988, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483464, "dur":426, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256483918, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689927256484273, "dur":317988, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256459839, "dur":11362, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471384, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256471498, "dur":91, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_56AFA6E27C7D5F59.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256471683, "dur":1075, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472857, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1689927256472940, "dur":142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473082, "dur":322, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256473532, "dur":2137, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineProjectSettings.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256473404, "dur":2331, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256475735, "dur":518, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256476272, "dur":1476, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.settings-manager@2.0.1\\Editor\\SettingsGUILayout.cs" }} +,{ "pid":12345, "tid":11, "ts":1689927256476254, "dur":1745, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256477999, "dur":316, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478315, "dur":616, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256478931, "dur":396, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479328, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256479404, "dur":560, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256479970, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256480370, "dur":521, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256480926, "dur":901, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256481833, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689927256481915, "dur":314, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1689927256482277, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482574, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256482818, "dur":185, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483003, "dur":446, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483450, "dur":436, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256483924, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689927256484272, "dur":317993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256459924, "dur":11305, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256471379, "dur":92, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689927256471378, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689927256471669, "dur":1325, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp2" }} +,{ "pid":12345, "tid":12, "ts":1689927256472994, "dur":214, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473209, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473362, "dur":143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473505, "dur":372, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256473988, "dur":972, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\UnifiedVariableUnitDescriptor.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256474960, "dur":723, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Variables\\SetVariableOption.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256473877, "dur":1920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256476263, "dur":1537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\Inspector\\InspectorAdaptiveWidthAttribute.cs" }} +,{ "pid":12345, "tid":12, "ts":1689927256475797, "dur":2033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256477964, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478317, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256478884, "dur":601, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256479485, "dur":966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480452, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480587, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256480789, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481057, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481224, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481351, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256481467, "dur":576, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482043, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482285, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482563, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256482830, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483001, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483457, "dur":454, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256483911, "dur":375, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689927256484286, "dur":318006, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256459945, "dur":11457, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471418, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256471676, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp2" }} +,{ "pid":12345, "tid":13, "ts":1689927256471897, "dur":1710, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":1729, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256473608, "dur":2253, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476265, "dur":633, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Collections\\NonNullableCollection.cs" }} +,{ "pid":12345, "tid":13, "ts":1689927256475862, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256476936, "dur":239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477175, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477352, "dur":89, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477441, "dur":167, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256477608, "dur":609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478217, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478320, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256478916, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256479464, "dur":493, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":13, "ts":1689927256479958, "dur":628, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256480591, "dur":562, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":13, "ts":1689927256481153, "dur":261, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256481472, "dur":544, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482017, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482288, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482575, "dur":227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256482802, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483008, "dur":434, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483443, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256483923, "dur":349, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689927256484272, "dur":317987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256459964, "dur":11446, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471420, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256471582, "dur":129, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp2" }} +,{ "pid":12345, "tid":14, "ts":1689927256471849, "dur":1734, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":664, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256473584, "dur":885, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474469, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256474737, "dur":358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256475096, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256476083, "dur":1948, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Description\\IGraphDescription.cs" }} +,{ "pid":12345, "tid":14, "ts":1689927256475290, "dur":2933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478224, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478322, "dur":583, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256478906, "dur":560, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256479466, "dur":967, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480523, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256480716, "dur":491, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481215, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481376, "dur":69, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256481464, "dur":548, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482066, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482305, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482586, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256482803, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483003, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483447, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256483906, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689927256484298, "dur":317995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256460082, "dur":11346, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256471450, "dur":173, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll" }} +,{ "pid":12345, "tid":15, "ts":1689927256471433, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_6B5854E2366B9BC5.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256471706, "dur":1865, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":15, "ts":1689927256473572, "dur":630, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474202, "dur":210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474412, "dur":183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474595, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474768, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":1028, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\InitializeAfterPluginsAttribute.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256476211, "dur":1699, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqGraphs\\Changelog_1_4_5.cs" }} +,{ "pid":12345, "tid":15, "ts":1689927256474996, "dur":2990, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256477986, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478310, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256478923, "dur":538, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256479461, "dur":443, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":15, "ts":1689927256479917, "dur":747, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":15, "ts":1689927256480665, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480820, "dur":102, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256480958, "dur":183, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481144, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481227, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481360, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256481456, "dur":596, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482052, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482302, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482582, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482849, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483465, "dur":406, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256483906, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689927256484297, "dur":318011, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256460100, "dur":11337, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256471447, "dur":95, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll" }} +,{ "pid":12345, "tid":16, "ts":1689927256471439, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_C9C18B6F155787CC.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256471583, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256471681, "dur":1247, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":16, "ts":1689927256472956, "dur":208, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473165, "dur":259, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256473425, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474083, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474279, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474461, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474633, "dur":197, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256474830, "dur":187, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475139, "dur":535, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugin\\Changelogs\\LegacyLudiqCore\\Changelog_1_4_6.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256475017, "dur":727, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256475745, "dur":405, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476270, "dur":569, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_StyleSheet.cs" }} +,{ "pid":12345, "tid":16, "ts":1689927256476151, "dur":756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256476907, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477072, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477229, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477386, "dur":296, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256477683, "dur":522, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478205, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478301, "dur":642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256478943, "dur":364, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256479331, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689927256479451, "dur":757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689927256480209, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480544, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480618, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480804, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256480957, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481162, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481216, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481358, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256481465, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482028, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482297, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482547, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482852, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256482977, "dur":487, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483464, "dur":411, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483875, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256483931, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689927256484292, "dur":318009, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256460192, "dur":11253, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256471592, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":17, "ts":1689927256471829, "dur":1676, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":17, "ts":1689927256473507, "dur":640, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474148, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474361, "dur":170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474531, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474688, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256474852, "dur":431, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475284, "dur":196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475480, "dur":205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475685, "dur":231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256475917, "dur":275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256476220, "dur":1800, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ColorGradient.cs" }} +,{ "pid":12345, "tid":17, "ts":1689927256476192, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478175, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478317, "dur":602, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256478919, "dur":564, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256479483, "dur":972, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480455, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480606, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480724, "dur":84, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480809, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256480951, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481214, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481376, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256481461, "dur":587, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482049, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482291, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482561, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482839, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256482990, "dur":470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483460, "dur":455, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256483915, "dur":369, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689927256484284, "dur":317979, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256460213, "dur":11239, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256471484, "dur":218, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_B9EB2E0105A28BA6.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689927256471729, "dur":90, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256471881, "dur":1708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":18, "ts":1689927256473590, "dur":1399, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256473589, "dur":1583, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475172, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475357, "dur":211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475569, "dur":233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256475995, "dur":2027, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Internal\\fsOption.cs" }} +,{ "pid":12345, "tid":18, "ts":1689927256475802, "dur":2242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478044, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478309, "dur":624, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256478933, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479315, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256479486, "dur":960, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480447, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480583, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480701, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480822, "dur":99, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256480925, "dur":447, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481380, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256481459, "dur":592, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482052, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482304, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482581, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256482847, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483000, "dur":458, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483459, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483877, "dur":57, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256483934, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256484259, "dur":12100, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256496362, "dur":653, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689927256497016, "dur":305263, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256460232, "dur":11226, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256471579, "dur":125, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":19, "ts":1689927256471714, "dur":1165, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":19, "ts":1689927256472959, "dur":269, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473229, "dur":254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473483, "dur":330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473813, "dur":173, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":980, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Flow\\Framework\\Nesting\\GraphInputAnalyser.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256473987, "dur":1189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475176, "dur":337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256475513, "dur":560, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476266, "dur":570, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Animation\\AnimationTrack.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256476073, "dur":812, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256476885, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477083, "dur":162, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477402, "dur":509, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\MultipleDisplayUtilities.cs" }} +,{ "pid":12345, "tid":19, "ts":1689927256477245, "dur":666, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477935, "dur":60, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256477995, "dur":321, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478316, "dur":604, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256478920, "dur":549, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256479470, "dur":989, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480460, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480563, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480615, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480723, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480821, "dur":103, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256480924, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689927256481244, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256481474, "dur":1285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256482814, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256482897, "dur":454, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483415, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256483533, "dur":343, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256483927, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484001, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256484276, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689927256484348, "dur":236, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256485238, "dur":223989, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689927256710587, "dur":90364, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256710586, "dur":90367, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689927256800997, "dur":1161, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":20, "ts":1689927256460256, "dur":11251, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256471523, "dur":1991, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":20, "ts":1689927256473515, "dur":342, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256473858, "dur":202, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256474206, "dur":1814, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\SubgraphUnit.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256474060, "dur":2096, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256476183, "dur":1888, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_ScrollbarEventHandler.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256476156, "dur":2128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478284, "dur":655, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256478940, "dur":417, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256479358, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256480755, "dur":81, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Gluon\\CheckinProgress.cs" }} +,{ "pid":12345, "tid":20, "ts":1689927256479537, "dur":1757, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256481375, "dur":109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689927256481508, "dur":440, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689927256482035, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482282, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482546, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256482818, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483014, "dur":442, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483456, "dur":433, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256483905, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689927256484298, "dur":317984, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689927256806556, "dur":1911, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid": 28512, "tid": 1242, "ts": 1689927256823918, "dur": 3203, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256827158, "dur": 1917, "ph": "X", "name": "backend1.traceevents", "args": {} }, +{ "pid": 28512, "tid": 1242, "ts": 1689927256820681, "dur": 9202, "ph": "X", "name": "Write chrome-trace events", "args": {} }, {} ] diff --git a/LMC/Library/Bee/tundra.digestcache b/LMC/Library/Bee/tundra.digestcache index 5efc28fd..bef5d448 100644 Binary files a/LMC/Library/Bee/tundra.digestcache and b/LMC/Library/Bee/tundra.digestcache differ diff --git a/LMC/Library/Bee/tundra.log.json b/LMC/Library/Bee/tundra.log.json index 1773308f..af114645 100644 --- a/LMC/Library/Bee/tundra.log.json +++ b/LMC/Library/Bee/tundra.log.json @@ -342,7 +342,7 @@ {"msg":"enqueueNode","enqueuedNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueuedNodeIndex":287,"enqueueingNodeAnnotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","enqueueingNodeIndex":275} {"msg":"enqueueNode","enqueuedNodeAnnotation":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp","enqueuedNodeIndex":286,"enqueueingNodeAnnotation":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm","enqueueingNodeIndex":287} {"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","enqueuedNodeIndex":343,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":6} -{"msg":"nodeRetryBuild","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":275} +{"msg":"inputSignatureChanged","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":275,"changes":[{"key":"Action","value":"\"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetCoreRuntime\\dotnet.exe\" exec \"D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp\" \"@Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp2\"","oldvalue":null},{"key":"FileList","value":["D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.CoreModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DeviceSimulatorModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DiagnosticsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.EditorToolbarModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneViewModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIBuilderModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsSamplesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UnityConnectModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AnimationModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ARModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AssetBundleModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AudioModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClothModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterInputModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterRendererModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ContentLoadModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CoreModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CrashReportingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DirectorModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DSPGraphModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GameCenterModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.HotReloadModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.IMGUIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputLegacyModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.JSONSerializeModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.LocalizationModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ParticleSystemModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.Physics2DModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PhysicsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ProfilerModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PropertiesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ScreenCaptureModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteMaskModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteShapeModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.StreamingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubstanceModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubsystemsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainPhysicsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreFontEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreTextEngineModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextRenderingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TLSModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UmbraModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityCurlModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityTestProtocolModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAssetBundleModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAudioModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestWWWModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VehiclesModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VideoModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VirtualTexturingModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VRModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.WindModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.XRModule.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\mscorlib.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ComponentModel.Composition.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Core.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Data.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Drawing.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.IO.Compression.FileSystem.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Net.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Numerics.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Runtime.Serialization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ServiceModel.Web.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Linq.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Serialization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\Microsoft.Win32.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.AppContext.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Buffers.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Concurrent.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.NonGeneric.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Specialized.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.EventBasedAsync.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.TypeConverter.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Console.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Data.Common.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Contracts.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Debug.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.FileVersionInfo.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Process.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TextWriterTraceListener.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tools.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TraceSource.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tracing.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Drawing.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Dynamic.Runtime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Calendars.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.ZipFile.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.DriveInfo.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Watcher.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.IsolatedStorage.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.MemoryMappedFiles.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Pipes.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.UnmanagedMemoryStream.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Parallel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Queryable.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Memory.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Http.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NameResolution.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NetworkInformation.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Ping.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Requests.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Security.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Sockets.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebHeaderCollection.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.Client.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Numerics.Vectors.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ObjectModel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.DispatchProxy.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.ILGeneration.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.Lightweight.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Reader.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.ResourceManager.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Writer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.CompilerServices.VisualC.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Handles.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.RuntimeInformation.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Numerics.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Formatters.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Json.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Xml.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Claims.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Algorithms.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Csp.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Primitives.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.X509Certificates.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Principal.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.SecureString.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.RegularExpressions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Overlapped.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Extensions.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Parallel.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Thread.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.ThreadPool.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ValueTuple.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.ReaderWriter.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlSerializer.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.XDocument.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\Extensions\\2.0.0\\System.Runtime.InteropServices.WindowsRuntime.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\ref\\2.1.0\\netstandard.dll","Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\lib\\ReportGenerator\\ReportGeneratorMerged.dll","Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Performance.Profile-Analyzer.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Rider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TestTools.CodeCoverage.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.SettingsProvider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Shared.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualStudio.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VSCode.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.UI.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.UI.ref.dll","Assets\\DoorOpen.cs","Assets\\Initalize.cs","Assets\\NewTextModify.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark01.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark01_UGUI.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark02.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark03.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\Benchmark04.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\CameraController.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ChatController.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\DropdownSample.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\EnvMapAnimator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ObjectSpin.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\ShaderPropAnimator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\SimpleScript.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\SkewTextExample.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TeleType.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextConsoleSimulator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextMeshProFloatingText.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TextMeshSpawner.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMPro_InstructionOverlay.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_DigitValidator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_ExampleScript_01.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_FrameRateCounter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_PhoneNumberValidator.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextEventCheck.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextEventHandler.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextInfoDebugTool.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextSelector_A.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_TextSelector_B.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\TMP_UiFrameRateCounter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexColorCycler.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexJitter.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexShakeA.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexShakeB.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\VertexZoom.cs","Assets\\TextMesh Pro\\Examples & Extras\\Scripts\\WarpTextExample.cs","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\Unity.SourceGenerators\\Unity.Properties.SourceGenerator.dll","D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\Unity.SourceGenerators\\Unity.SourceGenerators.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.rsp"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","displayName":"Csc Assembly-CSharp","index":275} {"msg":"noderesult","processed_node_count":339,"number_of_nodes_ever_queued":343,"annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":275,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll"} {"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":343,"changes":[{"key":"FileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb"],"oldvalue":[],"dependency":"explicit"}]} diff --git a/LMC/Library/SceneVisibilityState.asset b/LMC/Library/SceneVisibilityState.asset index f3ec4e0a..c88be230 100644 Binary files a/LMC/Library/SceneVisibilityState.asset and b/LMC/Library/SceneVisibilityState.asset differ diff --git a/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll b/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll index 416cd71a..934c9c15 100644 Binary files a/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll and b/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb b/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb index 0b58661f..642870a6 100644 Binary files a/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index b/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index new file mode 100644 index 00000000..0418550c Binary files /dev/null and b/LMC/Library/Search/98957a664bd18c47a3e41b2a0189ef53.32805.3.index differ diff --git a/LMC/Library/Search/transactions.db b/LMC/Library/Search/transactions.db index 9f3f2de3..bde56e16 100644 Binary files a/LMC/Library/Search/transactions.db and b/LMC/Library/Search/transactions.db differ diff --git a/LMC/Library/SourceAssetDB b/LMC/Library/SourceAssetDB index ff724e49..4a71c121 100644 Binary files a/LMC/Library/SourceAssetDB and b/LMC/Library/SourceAssetDB differ diff --git a/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json b/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json index 4c363b53..66d991c7 100644 --- a/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json +++ b/LMC/Library/StateCache/PrefabStageHierarchy/20/20dd23afa17a0be117539faead4f5ebd.json @@ -1 +1 @@ -{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[1549258216444794940,7115776030973179702,5862842709940939656,3022990752737702646],"m_LastClickedFileID":0} \ No newline at end of file +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[1549258216444794940,7115776030973179702,5862842709940939656,3022990752737702646],"m_LastClickedFileID":5862842709940939656} \ No newline at end of file diff --git a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json index 81ec2e65..01770538 100644 --- a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json +++ b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json @@ -1 +1 @@ -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":74.18060302734375,"y":46.27119827270508,"z":2.430156707763672},"rotation":{"x":0.0,"y":0.7071068286895752,"z":0.0,"w":0.7071068286895752},"size":96.68597412109375,"orthographic":false} \ No newline at end of file +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":168.24560546875,"y":-18.174959182739259,"z":-113.54839324951172},"rotation":{"x":0.0825752317905426,"y":0.7340317368507385,"z":-0.09074344485998154,"w":0.6679471135139465},"size":150.10302734375,"orthographic":false} \ No newline at end of file diff --git a/LMC/Library/ilpp.pid b/LMC/Library/ilpp.pid index 85a3eea1..207c0188 100644 --- a/LMC/Library/ilpp.pid +++ b/LMC/Library/ilpp.pid @@ -1 +1 @@ -30796 \ No newline at end of file +18976 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker0-prev.log b/LMC/Logs/AssetImportWorker0-prev.log index f99c71e2..4771900b 100644 --- a/LMC/Logs/AssetImportWorker0-prev.log +++ b/LMC/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker0.log -srvPort -57156 +57300 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [13788] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2733050046 [EditorId] 2733050046 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [30332] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2935914630 [EditorId] 2935914630 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [13788] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2733050046 [EditorId] 2733050046 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [30332] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2935914630 [EditorId] 2935914630 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 17.46 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 5.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,44 +69,44 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56924 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56848 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.004666 seconds. -- Loaded All Assemblies, in 0.340 seconds +Registered in 0.002594 seconds. +- Loaded All Assemblies, in 0.230 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.213 seconds -Domain Reload Profiling: 553ms - BeginReloadAssembly (132ms) +- Finished resetting the current domain, in 0.203 seconds +Domain Reload Profiling: 434ms + BeginReloadAssembly (58ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (30ms) + RebuildCommonClasses (26ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (50ms) - LoadAllAssembliesAndSetupDomain (120ms) - LoadAssemblies (129ms) + initialDomainReloadingComplete (39ms) + LoadAllAssembliesAndSetupDomain (100ms) + LoadAssemblies (58ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (115ms) - TypeCache.Refresh (114ms) - TypeCache.ScanAssembly (100ms) + AnalyzeDomain (98ms) + TypeCache.Refresh (97ms) + TypeCache.ScanAssembly (88ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (214ms) + FinalizeReload (203ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (169ms) + SetupLoadedEditorAssemblies (159ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (116ms) - ProcessInitializeOnLoadMethodAttributes (36ms) + ProcessInitializeOnLoadAttributes (109ms) + ProcessInitializeOnLoadMethodAttributes (37ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -116,51 +116,51 @@ Worker process is ready to serve import requests Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.585 seconds -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +- Loaded All Assemblies, in 0.539 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.375 seconds -Domain Reload Profiling: 960ms +- Finished resetting the current domain, in 0.371 seconds +Domain Reload Profiling: 910ms BeginReloadAssembly (108ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (18ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (415ms) - LoadAssemblies (249ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (365ms) + LoadAssemblies (206ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (226ms) - TypeCache.Refresh (212ms) - TypeCache.ScanAssembly (198ms) + AnalyzeDomain (218ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) ScanForSourceGeneratedMonoScriptInfo (11ms) ResolveRequiredComponents (3ms) - FinalizeReload (375ms) + FinalizeReload (371ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (261ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (198ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (195ms) ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (2ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) Unloading 31 unused Assets / (56.5 KB). Loaded Objects now: 3580. -Memory consumption went from 121.1 MB to 121.0 MB. -Total: 2.482300 ms (FindLiveObjects: 0.344100 ms CreateObjectMapping: 0.082100 ms MarkObjects: 1.976000 ms DeleteObjects: 0.079000 ms) +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 3.247300 ms (FindLiveObjects: 0.469700 ms CreateObjectMapping: 0.128700 ms MarkObjects: 2.538500 ms DeleteObjects: 0.109300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -176,69 +176,2660 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 551765.929163 seconds. - path: Assets/Segmental.ttf - artifactKey: Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Segmental.ttf using Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04493300fcec69a6b2a22a4419e17a16') in 0.114743 seconds + Time since last request: 552013.680165 seconds. + path: Assets/Cabinet.blend + artifactKey: Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Cabinet.blend using Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e042bc30ebf491fb3e39791c7cb65e2') in 0.135580 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 4 -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/accumulator.fbx - artifactKey: Guid(521707c941a6558438374a67ba294c3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/accumulator.fbx using Guid(521707c941a6558438374a67ba294c3e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e06c4de05bca5706b1fc781c242c4523') in 0.051545 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 9 +Number of asset objects unloaded after import = 20 ======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.493 seconds -Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +- Loaded All Assemblies, in 0.479 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.854 seconds -Domain Reload Profiling: 1347ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.454 seconds +Domain Reload Profiling: 933ms + BeginReloadAssembly (124ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (336ms) - LoadAssemblies (196ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (305ms) + LoadAssemblies (172ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (175ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (854ms) + FinalizeReload (454ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (256ms) + SetupLoadedEditorAssemblies (220ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3627. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.355200 ms (FindLiveObjects: 0.183100 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.023000 ms DeleteObjects: 0.033300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.512 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (512ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (44ms) - ProcessInitializeOnLoadAttributes (186ms) - ProcessInitializeOnLoadMethodAttributes (16ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (17ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3630. +Memory consumption went from 121.9 MB to 121.9 MB. +Total: 2.370400 ms (FindLiveObjects: 0.183900 ms CreateObjectMapping: 0.075000 ms MarkObjects: 2.071500 ms DeleteObjects: 0.039300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.959 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1801ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (723ms) + LoadAssemblies (516ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (298ms) + TypeCache.Refresh (288ms) + TypeCache.ScanAssembly (277ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (4ms) + FinalizeReload (842ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3633. +Memory consumption went from 121.9 MB to 121.9 MB. +Total: 3.883900 ms (FindLiveObjects: 0.178800 ms CreateObjectMapping: 0.076100 ms MarkObjects: 3.540900 ms DeleteObjects: 0.087300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.826 seconds +Refreshing native plugins compatible for Editor in 2.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.290 seconds +Domain Reload Profiling: 2117ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (600ms) + LoadAssemblies (386ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (284ms) + TypeCache.ScanAssembly (274ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1291ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (383ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (282ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3636. +Memory consumption went from 121.9 MB to 121.9 MB. +Total: 2.145100 ms (FindLiveObjects: 0.183200 ms CreateObjectMapping: 0.076500 ms MarkObjects: 1.833700 ms DeleteObjects: 0.050400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 799.770163 seconds. + path: Assets/Fonts/Segmental SDF.asset + artifactKey: Guid(122949bc315ef7d48aef6221c5b75666) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Fonts/Segmental SDF.asset using Guid(122949bc315ef7d48aef6221c5b75666) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6668cbb19d984f3fa6a102eae071f88e') in 0.182251 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 6 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.710 seconds +Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.062 seconds +Domain Reload Profiling: 1771ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (248ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (307ms) + TypeCache.Refresh (299ms) + TypeCache.ScanAssembly (287ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1062ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3631. -Memory consumption went from 121.8 MB to 121.7 MB. -Total: 2.235900 ms (FindLiveObjects: 0.184200 ms CreateObjectMapping: 0.067200 ms MarkObjects: 1.943100 ms DeleteObjects: 0.040700 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3641. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.128400 ms (FindLiveObjects: 0.260300 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.729400 ms DeleteObjects: 0.043200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.453 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.496 seconds +Domain Reload Profiling: 949ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (497ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3644. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 2.218400 ms (FindLiveObjects: 0.175400 ms CreateObjectMapping: 0.076200 ms MarkObjects: 1.929900 ms DeleteObjects: 0.036100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.720 seconds +Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.787 seconds +Domain Reload Profiling: 1506ms + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (497ms) + LoadAssemblies (278ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (283ms) + TypeCache.ScanAssembly (273ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (787ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3647. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 3.041200 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.104500 ms MarkObjects: 2.628400 ms DeleteObjects: 0.042300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.450 seconds +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 923ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (473ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3650. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 2.943600 ms (FindLiveObjects: 0.184700 ms CreateObjectMapping: 0.076400 ms MarkObjects: 2.562400 ms DeleteObjects: 0.119200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.456 seconds +Refreshing native plugins compatible for Editor in 2.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.450 seconds +Domain Reload Profiling: 906ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (450ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3653. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 3.292100 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.102800 ms MarkObjects: 2.890700 ms DeleteObjects: 0.053400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.764 seconds +Refreshing native plugins compatible for Editor in 4.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.789 seconds +Domain Reload Profiling: 1553ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (250ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (306ms) + TypeCache.Refresh (298ms) + TypeCache.ScanAssembly (289ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (790ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3656. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 4.132300 ms (FindLiveObjects: 0.333700 ms CreateObjectMapping: 0.105700 ms MarkObjects: 3.643900 ms DeleteObjects: 0.047700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.460 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.531 seconds +Domain Reload Profiling: 991ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (179ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (531ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3659. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 3.467100 ms (FindLiveObjects: 0.386000 ms CreateObjectMapping: 0.174700 ms MarkObjects: 2.854700 ms DeleteObjects: 0.050700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.449 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.448 seconds +Domain Reload Profiling: 897ms + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (304ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (448ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3662. +Memory consumption went from 122.0 MB to 121.9 MB. +Total: 2.264900 ms (FindLiveObjects: 0.185600 ms CreateObjectMapping: 0.072400 ms MarkObjects: 1.971800 ms DeleteObjects: 0.034600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.437 seconds +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.455 seconds +Domain Reload Profiling: 892ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (293ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (456ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3665. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.775000 ms (FindLiveObjects: 0.373900 ms CreateObjectMapping: 0.271600 ms MarkObjects: 2.085900 ms DeleteObjects: 0.042600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.497 seconds +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.755 seconds +Domain Reload Profiling: 1252ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (195ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (755ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (202ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (144ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3668. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.082800 ms (FindLiveObjects: 0.169000 ms CreateObjectMapping: 0.076700 ms MarkObjects: 1.797600 ms DeleteObjects: 0.038700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.432 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.446 seconds +Domain Reload Profiling: 879ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (285ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (447ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3671. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.445700 ms (FindLiveObjects: 0.188600 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.141100 ms DeleteObjects: 0.037700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.451 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.511 seconds +Domain Reload Profiling: 961ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (186ms) + TypeCache.Refresh (180ms) + TypeCache.ScanAssembly (172ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (511ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (276ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (201ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3674. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.337100 ms (FindLiveObjects: 0.182300 ms CreateObjectMapping: 0.085800 ms MarkObjects: 2.029600 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.476 seconds +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.838 seconds +Domain Reload Profiling: 1314ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (838ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (273ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3677. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.403100 ms (FindLiveObjects: 0.196600 ms CreateObjectMapping: 0.083100 ms MarkObjects: 2.087000 ms DeleteObjects: 0.035400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.473 seconds +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.591 seconds +Domain Reload Profiling: 1065ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (189ms) + TypeCache.Refresh (186ms) + TypeCache.ScanAssembly (177ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (592ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3680. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.698200 ms (FindLiveObjects: 0.219200 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.352100 ms DeleteObjects: 0.040800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.474 seconds +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.809 seconds +Domain Reload Profiling: 1284ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (810ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (272ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3683. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.519800 ms (FindLiveObjects: 0.381200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.009200 ms DeleteObjects: 0.035800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.440 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.549 seconds +Domain Reload Profiling: 989ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (549ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (271ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3686. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.749000 ms (FindLiveObjects: 0.287100 ms CreateObjectMapping: 0.115100 ms MarkObjects: 2.295900 ms DeleteObjects: 0.049800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.735 seconds +Refreshing native plugins compatible for Editor in 2.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.148 seconds +Domain Reload Profiling: 1883ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (513ms) + LoadAssemblies (309ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (263ms) + TypeCache.ScanAssembly (253ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1148ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (369ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (270ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3689. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.421200 ms (FindLiveObjects: 0.403000 ms CreateObjectMapping: 0.109500 ms MarkObjects: 2.859900 ms DeleteObjects: 0.047500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.486 seconds +Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.583 seconds +Domain Reload Profiling: 1070ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (584ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3692. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.630000 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.099200 ms MarkObjects: 2.261100 ms DeleteObjects: 0.042900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1764.328132 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '617be343bcc3254e59a9d3451933ad26') in 0.007519 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.571 seconds +Domain Reload Profiling: 1010ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (572ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (289ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3695. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.597400 ms (FindLiveObjects: 0.369100 ms CreateObjectMapping: 0.143500 ms MarkObjects: 2.044900 ms DeleteObjects: 0.038700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.449 seconds +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.530 seconds +Domain Reload Profiling: 979ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (530ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3698. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.479300 ms (FindLiveObjects: 0.206200 ms CreateObjectMapping: 0.141000 ms MarkObjects: 2.096400 ms DeleteObjects: 0.034900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.469 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.561 seconds +Domain Reload Profiling: 1031ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (562ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (290ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3701. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.694600 ms (FindLiveObjects: 0.209400 ms CreateObjectMapping: 0.105300 ms MarkObjects: 2.333300 ms DeleteObjects: 0.045500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.514 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.608 seconds +Domain Reload Profiling: 1123ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (343ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (206ms) + TypeCache.Refresh (202ms) + TypeCache.ScanAssembly (194ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (609ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3704. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.887200 ms (FindLiveObjects: 0.235500 ms CreateObjectMapping: 0.098100 ms MarkObjects: 2.507700 ms DeleteObjects: 0.044600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.511 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.620 seconds +Domain Reload Profiling: 1131ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (341ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (208ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (620ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3707. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.038100 ms (FindLiveObjects: 0.209800 ms CreateObjectMapping: 0.122000 ms MarkObjects: 2.665500 ms DeleteObjects: 0.039900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.499 seconds +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.550 seconds +Domain Reload Profiling: 1050ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (200ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (550ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3710. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.336600 ms (FindLiveObjects: 0.390500 ms CreateObjectMapping: 0.124900 ms MarkObjects: 2.776900 ms DeleteObjects: 0.043500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.521 seconds +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.603 seconds +Domain Reload Profiling: 1124ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (221ms) + TypeCache.Refresh (218ms) + TypeCache.ScanAssembly (209ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (604ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (32.4 KB). Loaded Objects now: 3713. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.125700 ms (FindLiveObjects: 0.217900 ms CreateObjectMapping: 0.106900 ms MarkObjects: 2.740600 ms DeleteObjects: 0.041500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.517 seconds +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.580 seconds +Domain Reload Profiling: 1097ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (206ms) + TypeCache.Refresh (202ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (580ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3716. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.759500 ms (FindLiveObjects: 0.222100 ms CreateObjectMapping: 0.098100 ms MarkObjects: 3.390700 ms DeleteObjects: 0.047300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.524 seconds +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.612 seconds +Domain Reload Profiling: 1136ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (207ms) + TypeCache.ScanAssembly (198ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (613ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (337ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (249ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3719. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.220400 ms (FindLiveObjects: 0.493600 ms CreateObjectMapping: 0.176200 ms MarkObjects: 2.510000 ms DeleteObjects: 0.039400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.749 seconds +Refreshing native plugins compatible for Editor in 3.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.813 seconds +Domain Reload Profiling: 1563ms + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (491ms) + LoadAssemblies (299ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (278ms) + TypeCache.Refresh (269ms) + TypeCache.ScanAssembly (258ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (814ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (357ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 4.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3722. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.721200 ms (FindLiveObjects: 0.340600 ms CreateObjectMapping: 0.092100 ms MarkObjects: 3.239900 ms DeleteObjects: 0.047200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.646 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.587 seconds +Domain Reload Profiling: 1233ms + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (50ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (394ms) + LoadAssemblies (253ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (212ms) + TypeCache.ScanAssembly (202ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (587ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (300ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3725. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.464600 ms (FindLiveObjects: 0.302300 ms CreateObjectMapping: 0.096600 ms MarkObjects: 2.028600 ms DeleteObjects: 0.036000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.520 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.589 seconds +Domain Reload Profiling: 1110ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (187ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (212ms) + TypeCache.Refresh (208ms) + TypeCache.ScanAssembly (200ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (590ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3728. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.921900 ms (FindLiveObjects: 0.210500 ms CreateObjectMapping: 0.199600 ms MarkObjects: 2.467500 ms DeleteObjects: 0.043400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.524 seconds +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.610 seconds +Domain Reload Profiling: 1135ms + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (213ms) + TypeCache.Refresh (209ms) + TypeCache.ScanAssembly (201ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (611ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3731. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.856200 ms (FindLiveObjects: 0.273400 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.437200 ms DeleteObjects: 0.043100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.463 seconds +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.605 seconds +Domain Reload Profiling: 1069ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (311ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (186ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (605ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3734. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.666700 ms (FindLiveObjects: 0.391600 ms CreateObjectMapping: 0.115300 ms MarkObjects: 2.110200 ms DeleteObjects: 0.048600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.559 seconds +Domain Reload Profiling: 1043ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (201ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (189ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (559ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (306ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (223ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3737. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.711700 ms (FindLiveObjects: 0.206400 ms CreateObjectMapping: 0.143400 ms MarkObjects: 2.308900 ms DeleteObjects: 0.052200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.545 seconds +Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.614 seconds +Domain Reload Profiling: 1159ms + BeginReloadAssembly (126ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (203ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (214ms) + TypeCache.Refresh (211ms) + TypeCache.ScanAssembly (202ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (615ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3740. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 3.065300 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.096200 ms MarkObjects: 2.700700 ms DeleteObjects: 0.043700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.507 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.564 seconds +Domain Reload Profiling: 1071ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (330ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (199ms) + TypeCache.ScanAssembly (191ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (564ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3743. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.673800 ms (FindLiveObjects: 0.203400 ms CreateObjectMapping: 0.087000 ms MarkObjects: 2.336100 ms DeleteObjects: 0.046100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.527 seconds +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.607 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (608ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3746. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.683000 ms (FindLiveObjects: 0.206200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.344400 ms DeleteObjects: 0.038500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.670 seconds +Domain Reload Profiling: 1136ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (670ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3749. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.906900 ms (FindLiveObjects: 0.249600 ms CreateObjectMapping: 0.121500 ms MarkObjects: 2.492600 ms DeleteObjects: 0.041900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.435 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.501 seconds +Domain Reload Profiling: 936ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (170ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (502ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (262ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3752. +Memory consumption went from 122.0 MB to 122.0 MB. +Total: 2.732400 ms (FindLiveObjects: 0.203400 ms CreateObjectMapping: 0.125100 ms MarkObjects: 2.364300 ms DeleteObjects: 0.038900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/LMC/Logs/AssetImportWorker0.log b/LMC/Logs/AssetImportWorker0.log index 4771900b..7cb45b89 100644 --- a/LMC/Logs/AssetImportWorker0.log +++ b/LMC/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker0.log -srvPort -57300 +58815 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [30332] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2935914630 [EditorId] 2935914630 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [7964] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1535087249 [EditorId] 1535087249 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [30332] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2935914630 [EditorId] 2935914630 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [7964] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1535087249 [EditorId] 1535087249 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 5.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 19.20 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,99 +69,2246 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56848 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56928 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002594 seconds. -- Loaded All Assemblies, in 0.230 seconds +Registered in 0.004590 seconds. +- Loaded All Assemblies, in 0.340 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.203 seconds -Domain Reload Profiling: 434ms - BeginReloadAssembly (58ms) +- Finished resetting the current domain, in 0.208 seconds +Domain Reload Profiling: 548ms + BeginReloadAssembly (144ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (26ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (143ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (114ms) + TypeCache.Refresh (113ms) + TypeCache.ScanAssembly (95ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (1ms) + FinalizeReload (208ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (163ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (112ms) + ProcessInitializeOnLoadMethodAttributes (37ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.164 seconds +Refreshing native plugins compatible for Editor in 3.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.489 seconds +Domain Reload Profiling: 1653ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (742ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (294ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (16ms) + ResolveRequiredComponents (3ms) + FinalizeReload (489ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.285300 ms (FindLiveObjects: 0.244700 ms CreateObjectMapping: 0.097300 ms MarkObjects: 3.754900 ms DeleteObjects: 0.186700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 559123.913020 seconds. + path: Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt + artifactKey: Guid(d82c1b31c7e74239bff1220585707d2b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/LineBreaking Leading Characters.txt using Guid(d82c1b31c7e74239bff1220585707d2b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7ade0b2c3acd396375e5727795b1bf75') in 0.084881 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne.json + artifactKey: Guid(8f05276190cf498a8153f6cbe761d4e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne.json using Guid(8f05276190cf498a8153f6cbe761d4e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '23133b20357b2267cc23d9452304b6a7') in 0.025262 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs + artifactKey: Guid(2787a46a4dc848c1b4b7b9307b614bfd) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ShaderPropAnimator.cs using Guid(2787a46a4dc848c1b4b7b9307b614bfd) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '66bb2efc1b8a910023ebe4b1add37e93') in 0.041913 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.002259 seconds. + path: Assets/Cabinet.blend + artifactKey: Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Cabinet.blend using Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '94dc8af8405f48c56095a5931979e170') in 0.075208 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 20 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/06 - Extra Rich Text Examples.unity + artifactKey: Guid(39a1fa96ad2a449b908fca29d4297a74) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/06 - Extra Rich Text Examples.unity using Guid(39a1fa96ad2a449b908fca29d4297a74) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '107130edf2ff2a420af412dba86feaae') in 0.015851 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs + artifactKey: Guid(dc20866c0d5e413ab7559440e15333ae) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark04.cs using Guid(dc20866c0d5e413ab7559440e15333ae) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1a65a47c4188b83674ce93ba753ec448') in 0.016110 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF + artifactKey: Guid(8a2b9e2a607dd2143b58c44bc32410b4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Electronic Highway Sign.TTF using Guid(8a2b9e2a607dd2143b58c44bc32410b4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3a8db84b21e76c4aaa1785fd9399b847') in 0.045969 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/20 - Input Field with Scrollbar.unity + artifactKey: Guid(337f92480dd24675aae9e79210fb1ad9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/20 - Input Field with Scrollbar.unity using Guid(337f92480dd24675aae9e79210fb1ad9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5749368ab1cf62db3de1205bbad5c8fe') in 0.018114 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/07 - Superscript & Subscript Example.unity + artifactKey: Guid(03ec435d4b7140e9b2d87f79136d8374) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/07 - Superscript & Subscript Example.unity using Guid(03ec435d4b7140e9b2d87f79136d8374) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0c0cf227fb9299412e274b10096900c2') in 0.016728 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000067 seconds. + path: Assets/12211_Robot_l2.controller + artifactKey: Guid(051d81c6115e89e40af19eb323491e45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/12211_Robot_l2.controller using Guid(051d81c6115e89e40af19eb323491e45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f30dcd57e1ccebf6626719d3c83d6f01') in 0.033547 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 17 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs + artifactKey: Guid(4f19c7f94c794c5097d8bd11e39c750d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ObjectSpin.cs using Guid(4f19c7f94c794c5097d8bd11e39c750d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3935ed8bb21cb1d2f54f71bac57c9b0b') in 0.016644 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/NewTextModify.cs + artifactKey: Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/NewTextModify.cs using Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '435910ace4628661f53e3207b3304692') in 0.015096 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/White.mat + artifactKey: Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/White.mat using Guid(f73ed8c00529ed449bdd53694fb0a2a8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '239318d7c3ceda824dabb1c873bbbef3') in 0.019406 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/23 - Animating Vertex Attributes.unity + artifactKey: Guid(54e994244b4b467e8583cf2da6dcc716) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/23 - Animating Vertex Attributes.unity using Guid(54e994244b4b467e8583cf2da6dcc716) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '21a6b47c19927fcb1e17c60b4bcbbe6e') in 0.013918 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000095 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader + artifactKey: Guid(c8d12adcee749c344b8117cf7c7eb912) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile SSD.shader using Guid(c8d12adcee749c344b8117cf7c7eb912) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '385883bf963cacda1fdeca9b90503cf6') in 0.026045 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers - OFL.txt + artifactKey: Guid(efe0bf4ac872451e91612d1ae593f480) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers - OFL.txt using Guid(efe0bf4ac872451e91612d1ae593f480) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9721b0e07751f0596f62ecd6d9daf77c') in 0.025239 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000061 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs + artifactKey: Guid(a4b6f99e8bc54541bbd149b014ff441c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/EnvMapAnimator.cs using Guid(a4b6f99e8bc54541bbd149b014ff441c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2f0a3af92d060ff1932c9acdcbfb0c0e') in 0.018385 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/17 - Old Computer Terminal.unity + artifactKey: Guid(3e2e4d7b0bed4cf9ab827e9f32448f69) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/17 - Old Computer Terminal.unity using Guid(3e2e4d7b0bed4cf9ab827e9f32448f69) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b44a84f776e6ac04ff43816385b28236') in 0.016040 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000073 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/Text Popup.prefab + artifactKey: Guid(b06f0e6c1dfa4356ac918da1bb32c603) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/Text Popup.prefab using Guid(b06f0e6c1dfa4356ac918da1bb32c603) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3802109bf7a6f22be46afcd1530e0234') in 0.081566 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 21 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs + artifactKey: Guid(43bcd35a1c0c40ccb6d472893fe2093f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextConsoleSimulator.cs using Guid(43bcd35a1c0c40ccb6d472893fe2093f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1511ae6008fba6d89cb1a7f6385bb777') in 0.021085 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs + artifactKey: Guid(1a7eb92a01ed499a987bde9def05fbce) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_DigitValidator.cs using Guid(1a7eb92a01ed499a987bde9def05fbce) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '523cb50f0dcc9a67259064c4dd7416b6') in 0.016323 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs + artifactKey: Guid(103e0a6a1d404693b9fb1a5173e0e979) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_A.cs using Guid(103e0a6a1d404693b9fb1a5173e0e979) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c822246baca51eb300b68f1032b6c94f') in 0.018131 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs + artifactKey: Guid(e32c266ee6204b21a427753cb0694c81) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TeleType.cs using Guid(e32c266ee6204b21a427753cb0694c81) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '18b88d133c73f5d172cc1089c72e60c0') in 0.021886 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset + artifactKey: Guid(fbef3c704dce48f08a44612d6c856c8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/Default Sprite Asset.asset using Guid(fbef3c704dce48f08a44612d6c856c8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3b1036ee150b6ad85fc8e2d0004904e2') in 0.049792 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat + artifactKey: Guid(6522f30e342599e4e9dd4cc2cc03c830) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Sunny Days.mat using Guid(6522f30e342599e4e9dd4cc2cc03c830) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4723fb1c7ea418d6cace999791f58d91') in 0.046355 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs + artifactKey: Guid(686ec78b56aa445795335fbadafcfaa4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_FrameRateCounter.cs using Guid(686ec78b56aa445795335fbadafcfaa4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ffa62681598bfd4f5b5f35d9585d796e') in 0.020421 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset + artifactKey: Guid(f952c082cb03451daed3ee968ac6c63e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Style Sheets/Default Style Sheet.asset using Guid(f952c082cb03451daed3ee968ac6c63e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '945f77b7b75029ce64578b3a4e828769') in 0.016286 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs + artifactKey: Guid(c3c1afeda5e545e0b19add5373896d2e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMPro_InstructionOverlay.cs using Guid(c3c1afeda5e545e0b19add5373896d2e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f9feb23686b9e4db575a16ec0f7c0396') in 0.016012 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs + artifactKey: Guid(76c11bbcfddf44e0ba17d6c2751c8d84) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshSpawner.cs using Guid(76c11bbcfddf44e0ba17d6c2751c8d84) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '996b441fc00bfe99f49d8c72a4f4a3bc') in 0.017479 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat + artifactKey: Guid(42df1c7856584b6b8db9a509b6b10074) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Soft Mask.mat using Guid(42df1c7856584b6b8db9a509b6b10074) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5163d2b1e7157e27017757c611bfae8c') in 0.029009 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000015 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg + artifactKey: Guid(1cdc5b506b1a4a33a53c30669ced1f51) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Fruit Jelly (B&W).jpg using Guid(1cdc5b506b1a4a33a53c30669ced1f51) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5ccfff2b6fa9f1bf2f3a2d579d9525e0') in 0.014616 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000064 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/05 - Style Tags.unity + artifactKey: Guid(70615243e2be4a81afaab9bf5d273d65) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/05 - Style Tags.unity using Guid(70615243e2be4a81afaab9bf5d273d65) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '804dc70b79fa7ed764ae12d2623bfadf') in 0.015204 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/14 - Multi Font & Sprites.unity + artifactKey: Guid(22a2fba786ad4c40ac0ba09f0b933100) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/14 - Multi Font & Sprites.unity using Guid(22a2fba786ad4c40ac0ba09f0b933100) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b20c0656b0899e8bc5345870bb8d528b') in 0.013749 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader + artifactKey: Guid(85187c2149c549c5b33f0cdb02836b17) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface-Mobile.shader using Guid(85187c2149c549c5b33f0cdb02836b17) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a5d390d7a074fbd7c9be9778e4ae861f') in 0.017318 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/accumulator.fbx + artifactKey: Guid(521707c941a6558438374a67ba294c3e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/accumulator.fbx using Guid(521707c941a6558438374a67ba294c3e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b3b741d3fc0e2708ee3b5ec9ae82b512') in 0.034071 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 9 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset + artifactKey: Guid(5302535af1044152a457ed104f1f4b91) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF.asset using Guid(5302535af1044152a457ed104f1f4b91) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0d5639f1e796fc1138bd59c1c9b6af0a') in 0.024623 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 4.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 0 Unused Serialized files (Serialized files now loaded: 0) +Unloading 2 unused Assets / (1.6 KB). Loaded Objects now: 3581. +Memory consumption went from 69.6 MB to 69.6 MB. +Total: 4.167500 ms (FindLiveObjects: 0.249100 ms CreateObjectMapping: 0.085300 ms MarkObjects: 3.806500 ms DeleteObjects: 0.025500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 137.107529 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bdd01779e14a9600c47589d49f1e0e86') in 0.015712 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.491 seconds +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.775 seconds +Domain Reload Profiling: 1266ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (200ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (775ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3584. +Memory consumption went from 116.9 MB to 116.9 MB. +Total: 2.166400 ms (FindLiveObjects: 0.176300 ms CreateObjectMapping: 0.073400 ms MarkObjects: 1.872600 ms DeleteObjects: 0.043100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.480 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.520 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (23ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (39ms) - LoadAllAssembliesAndSetupDomain (100ms) - LoadAssemblies (58ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (521ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3587. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.404300 ms (FindLiveObjects: 0.185000 ms CreateObjectMapping: 0.076400 ms MarkObjects: 2.104400 ms DeleteObjects: 0.037600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 948ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (505ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3590. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.169200 ms (FindLiveObjects: 0.175900 ms CreateObjectMapping: 0.072700 ms MarkObjects: 1.884800 ms DeleteObjects: 0.035000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.691 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.745 seconds +Domain Reload Profiling: 1436ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (466ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (258ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (745ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (312ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (227ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3593. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.326900 ms (FindLiveObjects: 0.224000 ms CreateObjectMapping: 0.079100 ms MarkObjects: 2.981400 ms DeleteObjects: 0.041400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.647 seconds +Refreshing native plugins compatible for Editor in 3.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.713 seconds +Domain Reload Profiling: 1362ms + BeginReloadAssembly (129ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (10ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (445ms) + LoadAssemblies (247ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (715ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (282ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3596. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.193000 ms (FindLiveObjects: 0.177200 ms CreateObjectMapping: 0.079600 ms MarkObjects: 1.897700 ms DeleteObjects: 0.037400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.725 seconds +Refreshing native plugins compatible for Editor in 3.10 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.305 seconds +Domain Reload Profiling: 2030ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (494ms) + LoadAssemblies (281ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (285ms) + TypeCache.Refresh (278ms) + TypeCache.ScanAssembly (267ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1305ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (416ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (314ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3599. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 4.073200 ms (FindLiveObjects: 0.248000 ms CreateObjectMapping: 0.081000 ms MarkObjects: 3.679900 ms DeleteObjects: 0.062900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.531 seconds +Domain Reload Profiling: 1161ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (385ms) + LoadAssemblies (251ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (218ms) + TypeCache.Refresh (216ms) + TypeCache.ScanAssembly (206ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (531ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3602. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.500700 ms (FindLiveObjects: 0.190600 ms CreateObjectMapping: 0.081200 ms MarkObjects: 2.192200 ms DeleteObjects: 0.035800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.547 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.864 seconds +Domain Reload Profiling: 1411ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (353ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (199ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (865ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (28ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3605. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.622000 ms (FindLiveObjects: 0.183800 ms CreateObjectMapping: 0.090900 ms MarkObjects: 2.296600 ms DeleteObjects: 0.050100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.492 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.480 seconds +Domain Reload Profiling: 973ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (200ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (480ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3608. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.846400 ms (FindLiveObjects: 0.358100 ms CreateObjectMapping: 0.179700 ms MarkObjects: 3.234000 ms DeleteObjects: 0.072600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.739 seconds +Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.774 seconds +Domain Reload Profiling: 1514ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (516ms) + LoadAssemblies (319ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (775ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (323ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (11ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3611. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.170900 ms (FindLiveObjects: 0.209200 ms CreateObjectMapping: 0.082000 ms MarkObjects: 2.842000 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.686 seconds +Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.858 seconds +Domain Reload Profiling: 1544ms + BeginReloadAssembly (139ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (251ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (290ms) + TypeCache.Refresh (282ms) + TypeCache.ScanAssembly (272ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (859ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (10ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (268ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3614. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.471800 ms (FindLiveObjects: 0.258400 ms CreateObjectMapping: 0.086400 ms MarkObjects: 3.068000 ms DeleteObjects: 0.057900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.440 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.490 seconds +Domain Reload Profiling: 931ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3617. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.586600 ms (FindLiveObjects: 0.350600 ms CreateObjectMapping: 0.122400 ms MarkObjects: 2.064500 ms DeleteObjects: 0.047900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.450 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.469 seconds +Domain Reload Profiling: 920ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (470ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3620. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.559800 ms (FindLiveObjects: 0.193600 ms CreateObjectMapping: 0.089000 ms MarkObjects: 2.237900 ms DeleteObjects: 0.038800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.479 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.714 seconds +Domain Reload Profiling: 1193ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (203ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (714ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (207ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (33ms) + ProcessInitializeOnLoadAttributes (155ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3623. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.226200 ms (FindLiveObjects: 0.162400 ms CreateObjectMapping: 0.071700 ms MarkObjects: 1.958500 ms DeleteObjects: 0.032900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.441 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.480 seconds +Domain Reload Profiling: 922ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (481ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (235ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3626. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.581600 ms (FindLiveObjects: 0.286600 ms CreateObjectMapping: 0.095500 ms MarkObjects: 2.161200 ms DeleteObjects: 0.037300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.444 seconds +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.493 seconds +Domain Reload Profiling: 937ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (494ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (256ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3629. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.580500 ms (FindLiveObjects: 0.234400 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.224000 ms DeleteObjects: 0.037600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.685 seconds +Domain Reload Profiling: 1169ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (194ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (685ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3632. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.387400 ms (FindLiveObjects: 0.177200 ms CreateObjectMapping: 0.071000 ms MarkObjects: 2.100100 ms DeleteObjects: 0.038300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.513 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.453 seconds +Domain Reload Profiling: 966ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (217ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (172ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (454ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3635. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.440800 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.069700 ms MarkObjects: 2.128200 ms DeleteObjects: 0.036800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.459 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.471 seconds +Domain Reload Profiling: 930ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3638. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.147200 ms (FindLiveObjects: 0.183800 ms CreateObjectMapping: 0.073900 ms MarkObjects: 1.855300 ms DeleteObjects: 0.033600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.442 seconds +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.462 seconds +Domain Reload Profiling: 904ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (463ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3641. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.368500 ms (FindLiveObjects: 0.223100 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.023700 ms DeleteObjects: 0.036600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.431 seconds +Domain Reload Profiling: 879ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (293ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (432ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (210ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3644. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.514600 ms (FindLiveObjects: 0.177400 ms CreateObjectMapping: 0.069600 ms MarkObjects: 2.232100 ms DeleteObjects: 0.034800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.490 seconds +Domain Reload Profiling: 936ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (8ms) + FinalizeReload (490ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3647. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.286200 ms (FindLiveObjects: 0.320500 ms CreateObjectMapping: 0.072900 ms MarkObjects: 1.858400 ms DeleteObjects: 0.033500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.671 seconds +Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.803 seconds +Domain Reload Profiling: 1474ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (247ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (262ms) + TypeCache.ScanAssembly (253ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (6ms) + FinalizeReload (804ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3650. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.265300 ms (FindLiveObjects: 0.292300 ms CreateObjectMapping: 0.088400 ms MarkObjects: 2.844700 ms DeleteObjects: 0.039100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.441 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.467 seconds +Domain Reload Profiling: 908ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (467ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3653. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.407500 ms (FindLiveObjects: 0.285700 ms CreateObjectMapping: 0.073600 ms MarkObjects: 2.006900 ms DeleteObjects: 0.040400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.686 seconds +Refreshing native plugins compatible for Editor in 2.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.786 seconds +Domain Reload Profiling: 1472ms + BeginReloadAssembly (133ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (482ms) + LoadAssemblies (272ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (256ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (786ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (340ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3656. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.952900 ms (FindLiveObjects: 0.275000 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.548700 ms DeleteObjects: 0.043100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.486 seconds +Refreshing native plugins compatible for Editor in 1.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.795 seconds +Domain Reload Profiling: 1282ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (795ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3659. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.196600 ms (FindLiveObjects: 0.368900 ms CreateObjectMapping: 0.123300 ms MarkObjects: 2.653800 ms DeleteObjects: 0.048900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.672 seconds +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1431ms + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (257ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (98ms) - TypeCache.Refresh (97ms) - TypeCache.ScanAssembly (88ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (203ms) + AnalyzeDomain (271ms) + TypeCache.Refresh (264ms) + TypeCache.ScanAssembly (255ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (759ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (159ms) + SetupLoadedEditorAssemblies (318ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (109ms) - ProcessInitializeOnLoadMethodAttributes (37ms) - AfterProcessingInitializeOnLoad (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (228ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3662. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.204700 ms (FindLiveObjects: 0.269800 ms CreateObjectMapping: 0.096200 ms MarkObjects: 2.720700 ms DeleteObjects: 0.116600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Worker process is ready to serve import requests +Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.539 seconds -Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +- Loaded All Assemblies, in 0.629 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.371 seconds -Domain Reload Profiling: 910ms - BeginReloadAssembly (108ms) +- Finished resetting the current domain, in 0.510 seconds +Domain Reload Profiling: 1138ms + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (18ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (365ms) - LoadAssemblies (206ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (261ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (218ms) - TypeCache.Refresh (204ms) - TypeCache.ScanAssembly (196ms) - ScanForSourceGeneratedMonoScriptInfo (11ms) - ResolveRequiredComponents (3ms) - FinalizeReload (371ms) + AnalyzeDomain (224ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (212ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (510ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (261ms) + SetupLoadedEditorAssemblies (247ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (3ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (42ms) - ProcessInitializeOnLoadAttributes (195ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (1ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) -Unloading 31 unused Assets / (56.5 KB). Loaded Objects now: 3580. -Memory consumption went from 121.0 MB to 121.0 MB. -Total: 3.247300 ms (FindLiveObjects: 0.469700 ms CreateObjectMapping: 0.128700 ms MarkObjects: 2.538500 ms DeleteObjects: 0.109300 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3665. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.826700 ms (FindLiveObjects: 0.275700 ms CreateObjectMapping: 0.101000 ms MarkObjects: 2.404000 ms DeleteObjects: 0.044900 ms) +Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> @@ -170,67 +2317,60 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 552013.680165 seconds. - path: Assets/Cabinet.blend - artifactKey: Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Cabinet.blend using Guid(6c1c68f17714fe3478dde58c6d95a9f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e042bc30ebf491fb3e39791c7cb65e2') in 0.135580 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 20 -======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.479 seconds -Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +- Loaded All Assemblies, in 0.471 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.454 seconds -Domain Reload Profiling: 933ms - BeginReloadAssembly (124ms) +- Finished resetting the current domain, in 0.691 seconds +Domain Reload Profiling: 1162ms + BeginReloadAssembly (107ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (44ms) - RebuildCommonClasses (23ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (305ms) - LoadAssemblies (172ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (190ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (454ms) + FinalizeReload (691ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (220ms) + SetupLoadedEditorAssemblies (211ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadAttributes (153ms) ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (2ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3627. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.355200 ms (FindLiveObjects: 0.183100 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.023000 ms DeleteObjects: 0.033300 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3668. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.485100 ms (FindLiveObjects: 0.224900 ms CreateObjectMapping: 0.092300 ms MarkObjects: 2.131600 ms DeleteObjects: 0.035100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -241,6 +2381,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -250,50 +2391,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.439 seconds -Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.512 seconds -Domain Reload Profiling: 952ms - BeginReloadAssembly (100ms) +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 910ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (23ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (21ms) RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (292ms) - LoadAssemblies (155ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (165ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (512ms) + FinalizeReload (472ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (259ms) + SetupLoadedEditorAssemblies (250ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (44ms) - ProcessInitializeOnLoadAttributes (189ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (16ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3630. -Memory consumption went from 121.9 MB to 121.9 MB. -Total: 2.370400 ms (FindLiveObjects: 0.183900 ms CreateObjectMapping: 0.075000 ms MarkObjects: 2.071500 ms DeleteObjects: 0.039300 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3671. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.655600 ms (FindLiveObjects: 0.297500 ms CreateObjectMapping: 0.099300 ms MarkObjects: 2.176000 ms DeleteObjects: 0.081900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -304,6 +2445,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -313,50 +2455,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.959 seconds -Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +- Loaded All Assemblies, in 0.746 seconds +Refreshing native plugins compatible for Editor in 3.49 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.842 seconds -Domain Reload Profiling: 1801ms - BeginReloadAssembly (187ms) +- Finished resetting the current domain, in 1.159 seconds +Domain Reload Profiling: 1905ms + BeginReloadAssembly (149ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (54ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (723ms) - LoadAssemblies (516ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (515ms) + LoadAssemblies (303ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (298ms) - TypeCache.Refresh (288ms) - TypeCache.ScanAssembly (277ms) - ScanForSourceGeneratedMonoScriptInfo (6ms) - ResolveRequiredComponents (4ms) - FinalizeReload (842ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (248ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (10ms) + FinalizeReload (1160ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (242ms) + SetupLoadedEditorAssemblies (354ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (179ms) - ProcessInitializeOnLoadMethodAttributes (14ms) - AfterProcessingInitializeOnLoad (1ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3633. -Memory consumption went from 121.9 MB to 121.9 MB. -Total: 3.883900 ms (FindLiveObjects: 0.178800 ms CreateObjectMapping: 0.076100 ms MarkObjects: 3.540900 ms DeleteObjects: 0.087300 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3674. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 12.963200 ms (FindLiveObjects: 0.265900 ms CreateObjectMapping: 0.415300 ms MarkObjects: 12.231400 ms DeleteObjects: 0.049600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -367,6 +2509,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -376,50 +2519,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.826 seconds -Refreshing native plugins compatible for Editor in 2.97 ms, found 3 plugins. +- Loaded All Assemblies, in 0.621 seconds +Refreshing native plugins compatible for Editor in 3.18 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.290 seconds -Domain Reload Profiling: 2117ms - BeginReloadAssembly (150ms) +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 1126ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (600ms) - LoadAssemblies (386ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (409ms) + LoadAssemblies (259ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (291ms) - TypeCache.Refresh (284ms) - TypeCache.ScanAssembly (274ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1291ms) + AnalyzeDomain (224ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (211ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (505ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (383ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (65ms) - ProcessInitializeOnLoadAttributes (282ms) - ProcessInitializeOnLoadMethodAttributes (22ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (16ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3636. -Memory consumption went from 121.9 MB to 121.9 MB. -Total: 2.145100 ms (FindLiveObjects: 0.183200 ms CreateObjectMapping: 0.076500 ms MarkObjects: 1.833700 ms DeleteObjects: 0.050400 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3677. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.303900 ms (FindLiveObjects: 0.185700 ms CreateObjectMapping: 0.073300 ms MarkObjects: 2.007600 ms DeleteObjects: 0.036500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -430,67 +2573,124 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 799.770163 seconds. - path: Assets/Fonts/Segmental SDF.asset - artifactKey: Guid(122949bc315ef7d48aef6221c5b75666) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Fonts/Segmental SDF.asset using Guid(122949bc315ef7d48aef6221c5b75666) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6668cbb19d984f3fa6a102eae071f88e') in 0.182251 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 6 -======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.710 seconds -Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.062 seconds -Domain Reload Profiling: 1771ms - BeginReloadAssembly (146ms) +- Finished resetting the current domain, in 1.022 seconds +Domain Reload Profiling: 1695ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (39ms) - RebuildCommonClasses (34ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (33ms) RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (487ms) - LoadAssemblies (248ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (267ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (307ms) - TypeCache.Refresh (299ms) - TypeCache.ScanAssembly (287ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) + AnalyzeDomain (258ms) + TypeCache.Refresh (250ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (5ms) - FinalizeReload (1062ms) + FinalizeReload (1023ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3680. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.217600 ms (FindLiveObjects: 0.243100 ms CreateObjectMapping: 0.083300 ms MarkObjects: 2.843000 ms DeleteObjects: 0.047200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.691 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 1176ms + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (477ms) + LoadAssemblies (282ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (271ms) + TypeCache.Refresh (268ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (485ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (325ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3641. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.128400 ms (FindLiveObjects: 0.260300 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.729400 ms DeleteObjects: 0.043200 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3683. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.897900 ms (FindLiveObjects: 0.359500 ms CreateObjectMapping: 0.223700 ms MarkObjects: 2.270200 ms DeleteObjects: 0.043700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -501,6 +2701,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -510,50 +2711,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.453 seconds -Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +- Loaded All Assemblies, in 0.452 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.496 seconds -Domain Reload Profiling: 949ms - BeginReloadAssembly (103ms) +- Finished resetting the current domain, in 0.433 seconds +Domain Reload Profiling: 886ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) + CreateAndSetChildDomain (29ms) RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (301ms) - LoadAssemblies (168ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (164ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (497ms) + FinalizeReload (434ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (237ms) + SetupLoadedEditorAssemblies (213ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (167ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (150ms) ProcessInitializeOnLoadMethodAttributes (13ms) AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3644. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 2.218400 ms (FindLiveObjects: 0.175400 ms CreateObjectMapping: 0.076200 ms MarkObjects: 1.929900 ms DeleteObjects: 0.036100 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3686. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.470000 ms (FindLiveObjects: 0.323200 ms CreateObjectMapping: 0.121500 ms MarkObjects: 2.946000 ms DeleteObjects: 0.077500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -564,6 +2765,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -573,50 +2775,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.720 seconds -Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins. +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.787 seconds -Domain Reload Profiling: 1506ms - BeginReloadAssembly (142ms) +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 939ms + BeginReloadAssembly (104ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (497ms) - LoadAssemblies (278ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (159ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (291ms) - TypeCache.Refresh (283ms) - TypeCache.ScanAssembly (273ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (5ms) - FinalizeReload (787ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (501ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (331ms) + SetupLoadedEditorAssemblies (268ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (21ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (17ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.05 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3647. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 3.041200 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.104500 ms MarkObjects: 2.628400 ms DeleteObjects: 0.042300 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3689. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.721400 ms (FindLiveObjects: 0.278000 ms CreateObjectMapping: 0.102800 ms MarkObjects: 2.297900 ms DeleteObjects: 0.041300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -627,6 +2829,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -636,50 +2839,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.450 seconds -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +- Loaded All Assemblies, in 0.487 seconds +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.472 seconds -Domain Reload Profiling: 923ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.610 seconds +Domain Reload Profiling: 1097ms + BeginReloadAssembly (114ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (30ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (297ms) - LoadAssemblies (169ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (323ms) + LoadAssemblies (194ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (174ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (473ms) + FinalizeReload (610ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (245ms) + SetupLoadedEditorAssemblies (229ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (181ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3650. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 2.943600 ms (FindLiveObjects: 0.184700 ms CreateObjectMapping: 0.076400 ms MarkObjects: 2.562400 ms DeleteObjects: 0.119200 ms) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3692. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.466200 ms (FindLiveObjects: 0.184400 ms CreateObjectMapping: 0.069200 ms MarkObjects: 2.178900 ms DeleteObjects: 0.032800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -690,6 +2893,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -699,50 +2903,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.456 seconds -Refreshing native plugins compatible for Editor in 2.03 ms, found 3 plugins. +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 3.31 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.450 seconds -Domain Reload Profiling: 906ms - BeginReloadAssembly (103ms) +- Finished resetting the current domain, in 0.433 seconds +Domain Reload Profiling: 880ms + BeginReloadAssembly (100ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (29ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (294ms) - LoadAssemblies (167ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (173ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (450ms) + FinalizeReload (433ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (226ms) + SetupLoadedEditorAssemblies (214ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (165ms) - ProcessInitializeOnLoadMethodAttributes (13ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (15ms) AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 4.23 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3653. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 3.292100 ms (FindLiveObjects: 0.244100 ms CreateObjectMapping: 0.102800 ms MarkObjects: 2.890700 ms DeleteObjects: 0.053400 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3695. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.341400 ms (FindLiveObjects: 0.199900 ms CreateObjectMapping: 0.078300 ms MarkObjects: 2.025600 ms DeleteObjects: 0.036700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -753,6 +2957,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -762,50 +2967,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.764 seconds -Refreshing native plugins compatible for Editor in 4.14 ms, found 3 plugins. +- Loaded All Assemblies, in 0.696 seconds +Refreshing native plugins compatible for Editor in 2.66 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.789 seconds -Domain Reload Profiling: 1553ms - BeginReloadAssembly (199ms) +- Finished resetting the current domain, in 0.771 seconds +Domain Reload Profiling: 1467ms + BeginReloadAssembly (143ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (487ms) - LoadAssemblies (250ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (288ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (306ms) - TypeCache.Refresh (298ms) - TypeCache.ScanAssembly (289ms) + AnalyzeDomain (258ms) + TypeCache.Refresh (246ms) + TypeCache.ScanAssembly (235ms) ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (5ms) - FinalizeReload (790ms) + ResolveRequiredComponents (10ms) + FinalizeReload (771ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (357ms) + SetupLoadedEditorAssemblies (318ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (260ms) - ProcessInitializeOnLoadMethodAttributes (22ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 2.08 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3656. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 4.132300 ms (FindLiveObjects: 0.333700 ms CreateObjectMapping: 0.105700 ms MarkObjects: 3.643900 ms DeleteObjects: 0.047700 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3698. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.436400 ms (FindLiveObjects: 0.296700 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.993200 ms DeleteObjects: 0.058400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -816,6 +3021,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -825,50 +3031,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.460 seconds -Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +- Loaded All Assemblies, in 0.649 seconds +Refreshing native plugins compatible for Editor in 3.16 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.531 seconds -Domain Reload Profiling: 991ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 0.693 seconds +Domain Reload Profiling: 1342ms + BeginReloadAssembly (136ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (308ms) - LoadAssemblies (161ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (440ms) + LoadAssemblies (253ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (190ms) - TypeCache.Refresh (187ms) - TypeCache.ScanAssembly (179ms) + AnalyzeDomain (260ms) + TypeCache.Refresh (255ms) + TypeCache.ScanAssembly (245ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (531ms) + ResolveRequiredComponents (5ms) + FinalizeReload (693ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (297ms) + SetupLoadedEditorAssemblies (269ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (220ms) - ProcessInitializeOnLoadMethodAttributes (18ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3659. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 3.467100 ms (FindLiveObjects: 0.386000 ms CreateObjectMapping: 0.174700 ms MarkObjects: 2.854700 ms DeleteObjects: 0.050700 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3701. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.720300 ms (FindLiveObjects: 0.260500 ms CreateObjectMapping: 0.151700 ms MarkObjects: 2.262100 ms DeleteObjects: 0.045100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -879,6 +3085,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -888,50 +3095,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.449 seconds -Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +- Loaded All Assemblies, in 0.703 seconds +Refreshing native plugins compatible for Editor in 2.75 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.448 seconds -Domain Reload Profiling: 897ms - BeginReloadAssembly (95ms) +- Finished resetting the current domain, in 0.804 seconds +Domain Reload Profiling: 1507ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (304ms) - LoadAssemblies (166ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (493ms) + LoadAssemblies (267ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (183ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (448ms) + AnalyzeDomain (298ms) + TypeCache.Refresh (289ms) + TypeCache.ScanAssembly (277ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (804ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (229ms) + SetupLoadedEditorAssemblies (337ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (16ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (21ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.02 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.46 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3662. -Memory consumption went from 122.0 MB to 121.9 MB. -Total: 2.264900 ms (FindLiveObjects: 0.185600 ms CreateObjectMapping: 0.072400 ms MarkObjects: 1.971800 ms DeleteObjects: 0.034600 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3704. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.091400 ms (FindLiveObjects: 0.268600 ms CreateObjectMapping: 0.100800 ms MarkObjects: 2.671200 ms DeleteObjects: 0.049300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -942,6 +3149,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -951,50 +3159,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.437 seconds -Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. +- Loaded All Assemblies, in 0.453 seconds +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.455 seconds -Domain Reload Profiling: 892ms - BeginReloadAssembly (98ms) +- Finished resetting the current domain, in 0.498 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (28ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (16ms) - LoadAllAssembliesAndSetupDomain (293ms) - LoadAssemblies (160ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (158ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (175ms) - TypeCache.Refresh (172ms) - TypeCache.ScanAssembly (164ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (169ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (456ms) + ResolveRequiredComponents (7ms) + FinalizeReload (499ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (230ms) + SetupLoadedEditorAssemblies (260ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (37ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3665. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.775000 ms (FindLiveObjects: 0.373900 ms CreateObjectMapping: 0.271600 ms MarkObjects: 2.085900 ms DeleteObjects: 0.042600 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3707. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.430900 ms (FindLiveObjects: 0.277800 ms CreateObjectMapping: 0.092200 ms MarkObjects: 2.025500 ms DeleteObjects: 0.034700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1005,6 +3213,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1014,50 +3223,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.497 seconds -Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.755 seconds -Domain Reload Profiling: 1252ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1452ms + BeginReloadAssembly (139ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (337ms) - LoadAssemblies (195ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (275ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (175ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (755ms) + ResolveRequiredComponents (5ms) + FinalizeReload (760ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (202ms) + SetupLoadedEditorAssemblies (330ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (3ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (144ms) - ProcessInitializeOnLoadMethodAttributes (12ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (23ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.30 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3668. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.082800 ms (FindLiveObjects: 0.169000 ms CreateObjectMapping: 0.076700 ms MarkObjects: 1.797600 ms DeleteObjects: 0.038700 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3710. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.841100 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.095600 ms MarkObjects: 2.433500 ms DeleteObjects: 0.045900 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1068,59 +3277,68 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 2164.764004 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd8b2fbac2e66fa3fc37d663033363fd') in 0.204145 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.432 seconds -Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +- Loaded All Assemblies, in 0.470 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.446 seconds -Domain Reload Profiling: 879ms - BeginReloadAssembly (100ms) +- Finished resetting the current domain, in 0.487 seconds +Domain Reload Profiling: 957ms + BeginReloadAssembly (106ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (285ms) - LoadAssemblies (160ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (168ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (172ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (162ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (189ms) + TypeCache.ScanAssembly (182ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (447ms) + ResolveRequiredComponents (4ms) + FinalizeReload (487ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (228ms) + SetupLoadedEditorAssemblies (249ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (42ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (16ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3671. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.445700 ms (FindLiveObjects: 0.188600 ms CreateObjectMapping: 0.077600 ms MarkObjects: 2.141100 ms DeleteObjects: 0.037700 ms) +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3721. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.810200 ms (FindLiveObjects: 0.226700 ms CreateObjectMapping: 0.094800 ms MarkObjects: 2.451700 ms DeleteObjects: 0.036300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1131,6 +3349,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1140,50 +3359,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.451 seconds -Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.511 seconds -Domain Reload Profiling: 961ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 0.481 seconds +Domain Reload Profiling: 929ms + BeginReloadAssembly (97ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (24ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) + initialDomainReloadingComplete (20ms) LoadAllAssembliesAndSetupDomain (301ms) - LoadAssemblies (158ms) + LoadAssemblies (164ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (180ms) - TypeCache.ScanAssembly (172ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (511ms) + ResolveRequiredComponents (3ms) + FinalizeReload (481ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (276ms) + SetupLoadedEditorAssemblies (254ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (201ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (182ms) ProcessInitializeOnLoadMethodAttributes (17ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3674. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.337100 ms (FindLiveObjects: 0.182300 ms CreateObjectMapping: 0.085800 ms MarkObjects: 2.029600 ms DeleteObjects: 0.038900 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3724. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.171000 ms (FindLiveObjects: 0.292600 ms CreateObjectMapping: 0.142700 ms MarkObjects: 2.695300 ms DeleteObjects: 0.039500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1194,6 +3413,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1203,50 +3423,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.476 seconds -Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +- Loaded All Assemblies, in 0.689 seconds +Refreshing native plugins compatible for Editor in 2.52 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.838 seconds -Domain Reload Profiling: 1314ms - BeginReloadAssembly (100ms) +- Finished resetting the current domain, in 1.150 seconds +Domain Reload Profiling: 1838ms + BeginReloadAssembly (138ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (326ms) - LoadAssemblies (192ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (476ms) + LoadAssemblies (251ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) + AnalyzeDomain (287ms) + TypeCache.Refresh (282ms) + TypeCache.ScanAssembly (271ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (838ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1150ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (273ms) + SetupLoadedEditorAssemblies (346ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (196ms) - ProcessInitializeOnLoadMethodAttributes (19ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3677. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.403100 ms (FindLiveObjects: 0.196600 ms CreateObjectMapping: 0.083100 ms MarkObjects: 2.087000 ms DeleteObjects: 0.035400 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3727. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.493700 ms (FindLiveObjects: 0.253100 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.099700 ms DeleteObjects: 0.038100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1257,6 +3477,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1266,50 +3487,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.473 seconds -Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +- Loaded All Assemblies, in 0.503 seconds +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.591 seconds -Domain Reload Profiling: 1065ms - BeginReloadAssembly (104ms) +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 1004ms + BeginReloadAssembly (96ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (25ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (22ms) RebuildNativeTypeToScriptingClass (8ms) initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (317ms) - LoadAssemblies (173ms) + LoadAllAssembliesAndSetupDomain (358ms) + LoadAssemblies (230ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (189ms) - TypeCache.Refresh (186ms) - TypeCache.ScanAssembly (177ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (592ms) + FinalizeReload (501ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (297ms) + SetupLoadedEditorAssemblies (245ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (215ms) - ProcessInitializeOnLoadMethodAttributes (19ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (177ms) + ProcessInitializeOnLoadMethodAttributes (17ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3680. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.698200 ms (FindLiveObjects: 0.219200 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.352100 ms DeleteObjects: 0.040800 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.204200 ms (FindLiveObjects: 0.178500 ms CreateObjectMapping: 0.071300 ms MarkObjects: 1.918000 ms DeleteObjects: 0.035400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1320,6 +3541,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1329,50 +3551,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.474 seconds -Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.809 seconds -Domain Reload Profiling: 1284ms - BeginReloadAssembly (99ms) +- Finished resetting the current domain, in 0.476 seconds +Domain Reload Profiling: 919ms + BeginReloadAssembly (105ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (325ms) - LoadAssemblies (191ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (163ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (167ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (810ms) + FinalizeReload (476ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (272ms) + SetupLoadedEditorAssemblies (246ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (197ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (1ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3683. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.519800 ms (FindLiveObjects: 0.381200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.009200 ms DeleteObjects: 0.035800 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.491900 ms (FindLiveObjects: 0.202500 ms CreateObjectMapping: 0.085300 ms MarkObjects: 2.165300 ms DeleteObjects: 0.037500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1383,6 +3605,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1392,50 +3615,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.440 seconds -Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.549 seconds -Domain Reload Profiling: 989ms - BeginReloadAssembly (100ms) +- Finished resetting the current domain, in 0.553 seconds +Domain Reload Profiling: 1037ms + BeginReloadAssembly (104ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (28ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (9ms) initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (291ms) - LoadAssemblies (161ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (185ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (174ms) - TypeCache.Refresh (171ms) - TypeCache.ScanAssembly (164ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (549ms) + ResolveRequiredComponents (7ms) + FinalizeReload (553ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (271ms) + SetupLoadedEditorAssemblies (254ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (197ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3686. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.749000 ms (FindLiveObjects: 0.287100 ms CreateObjectMapping: 0.115100 ms MarkObjects: 2.295900 ms DeleteObjects: 0.049800 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3736. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.211200 ms (FindLiveObjects: 0.229400 ms CreateObjectMapping: 0.081700 ms MarkObjects: 1.862500 ms DeleteObjects: 0.036400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1446,6 +3669,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1455,50 +3679,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.735 seconds -Refreshing native plugins compatible for Editor in 2.65 ms, found 3 plugins. +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.148 seconds -Domain Reload Profiling: 1883ms - BeginReloadAssembly (141ms) +- Finished resetting the current domain, in 0.507 seconds +Domain Reload Profiling: 974ms + BeginReloadAssembly (107ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (33ms) - LoadAllAssembliesAndSetupDomain (513ms) - LoadAssemblies (309ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (177ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (269ms) - TypeCache.Refresh (263ms) - TypeCache.ScanAssembly (253ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1148ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (508ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (369ms) + SetupLoadedEditorAssemblies (240ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (61ms) - ProcessInitializeOnLoadAttributes (270ms) - ProcessInitializeOnLoadMethodAttributes (24ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 2.80 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3689. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.421200 ms (FindLiveObjects: 0.403000 ms CreateObjectMapping: 0.109500 ms MarkObjects: 2.859900 ms DeleteObjects: 0.047500 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3739. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.346200 ms (FindLiveObjects: 0.173900 ms CreateObjectMapping: 0.068100 ms MarkObjects: 2.067600 ms DeleteObjects: 0.036000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1509,6 +3733,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1518,50 +3743,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.486 seconds -Refreshing native plugins compatible for Editor in 1.05 ms, found 3 plugins. +- Loaded All Assemblies, in 0.451 seconds +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.583 seconds -Domain Reload Profiling: 1070ms - BeginReloadAssembly (109ms) +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (104ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (317ms) - LoadAssemblies (180ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (168ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (176ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (584ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (302ms) + SetupLoadedEditorAssemblies (251ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (18ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.08 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3692. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.630000 ms (FindLiveObjects: 0.225800 ms CreateObjectMapping: 0.099200 ms MarkObjects: 2.261100 ms DeleteObjects: 0.042900 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3742. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.058900 ms (FindLiveObjects: 0.340300 ms CreateObjectMapping: 0.105500 ms MarkObjects: 2.575400 ms DeleteObjects: 0.036400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1572,67 +3797,60 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 1764.328132 seconds. - path: Assets/Initalize.cs - artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '617be343bcc3254e59a9d3451933ad26') in 0.007519 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 0 -======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.439 seconds -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +- Loaded All Assemblies, in 0.763 seconds +Refreshing native plugins compatible for Editor in 2.98 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.571 seconds -Domain Reload Profiling: 1010ms - BeginReloadAssembly (102ms) +- Finished resetting the current domain, in 0.828 seconds +Domain Reload Profiling: 1591ms + BeginReloadAssembly (160ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (290ms) - LoadAssemblies (161ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (298ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (171ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (161ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (572ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (295ms) + TypeCache.ScanAssembly (285ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (828ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (289ms) + SetupLoadedEditorAssemblies (318ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (212ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (1ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.02 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3695. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.597400 ms (FindLiveObjects: 0.369100 ms CreateObjectMapping: 0.143500 ms MarkObjects: 2.044900 ms DeleteObjects: 0.038700 ms) +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3745. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.242600 ms (FindLiveObjects: 0.239500 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.880600 ms DeleteObjects: 0.037000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1643,6 +3861,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1652,50 +3871,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.449 seconds -Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +- Loaded All Assemblies, in 0.761 seconds +Refreshing native plugins compatible for Editor in 2.38 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.530 seconds -Domain Reload Profiling: 979ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 0.863 seconds +Domain Reload Profiling: 1625ms + BeginReloadAssembly (154ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (297ms) - LoadAssemblies (162ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (527ms) + LoadAssemblies (301ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (178ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (167ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (530ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (294ms) + TypeCache.ScanAssembly (284ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (864ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (282ms) + SetupLoadedEditorAssemblies (356ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (207ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3698. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.479300 ms (FindLiveObjects: 0.206200 ms CreateObjectMapping: 0.141000 ms MarkObjects: 2.096400 ms DeleteObjects: 0.034900 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3748. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.841900 ms (FindLiveObjects: 0.282900 ms CreateObjectMapping: 0.081800 ms MarkObjects: 2.434400 ms DeleteObjects: 0.041700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1706,6 +3925,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1715,50 +3935,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.469 seconds -Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.561 seconds -Domain Reload Profiling: 1031ms - BeginReloadAssembly (102ms) +- Finished resetting the current domain, in 0.524 seconds +Domain Reload Profiling: 990ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (314ms) - LoadAssemblies (171ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (315ms) + LoadAssemblies (163ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (176ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (182ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (562ms) + FinalizeReload (525ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (290ms) + SetupLoadedEditorAssemblies (268ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (213ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (19ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3701. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.694600 ms (FindLiveObjects: 0.209400 ms CreateObjectMapping: 0.105300 ms MarkObjects: 2.333300 ms DeleteObjects: 0.045500 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.424600 ms (FindLiveObjects: 0.194300 ms CreateObjectMapping: 0.108900 ms MarkObjects: 2.074000 ms DeleteObjects: 0.046400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1769,6 +3989,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1778,50 +3999,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.514 seconds -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +- Loaded All Assemblies, in 0.478 seconds +Refreshing native plugins compatible for Editor in 2.08 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.608 seconds -Domain Reload Profiling: 1123ms +- Finished resetting the current domain, in 0.468 seconds +Domain Reload Profiling: 947ms BeginReloadAssembly (109ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (30ms) - RebuildCommonClasses (29ms) + RebuildCommonClasses (25ms) RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (343ms) - LoadAssemblies (185ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (173ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (206ms) - TypeCache.Refresh (202ms) - TypeCache.ScanAssembly (194ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (192ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (178ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (609ms) + FinalizeReload (469ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (318ms) + SetupLoadedEditorAssemblies (220ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (233ms) - ProcessInitializeOnLoadMethodAttributes (19ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3704. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.887200 ms (FindLiveObjects: 0.235500 ms CreateObjectMapping: 0.098100 ms MarkObjects: 2.507700 ms DeleteObjects: 0.044600 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.414100 ms (FindLiveObjects: 0.259900 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.021400 ms DeleteObjects: 0.044200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1832,6 +4053,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1841,50 +4063,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.511 seconds -Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.620 seconds -Domain Reload Profiling: 1131ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.552 seconds +Domain Reload Profiling: 1035ms + BeginReloadAssembly (106ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (341ms) - LoadAssemblies (186ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (180ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (208ms) - TypeCache.Refresh (204ms) - TypeCache.ScanAssembly (196ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (189ms) + TypeCache.ScanAssembly (181ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (4ms) - FinalizeReload (620ms) + FinalizeReload (552ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (322ms) + SetupLoadedEditorAssemblies (285ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (19ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.76 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3707. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.038100 ms (FindLiveObjects: 0.209800 ms CreateObjectMapping: 0.122000 ms MarkObjects: 2.665500 ms DeleteObjects: 0.039900 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.470300 ms (FindLiveObjects: 0.311800 ms CreateObjectMapping: 0.101700 ms MarkObjects: 2.019900 ms DeleteObjects: 0.036100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1895,6 +4117,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1904,50 +4127,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.499 seconds -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +- Loaded All Assemblies, in 0.703 seconds +Refreshing native plugins compatible for Editor in 4.02 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.550 seconds -Domain Reload Profiling: 1050ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.858 seconds +Domain Reload Profiling: 1561ms + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (334ms) - LoadAssemblies (180ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (486ms) + LoadAssemblies (265ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (203ms) - TypeCache.Refresh (200ms) - TypeCache.ScanAssembly (190ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (550ms) + AnalyzeDomain (293ms) + TypeCache.Refresh (286ms) + TypeCache.ScanAssembly (276ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (859ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (274ms) + SetupLoadedEditorAssemblies (340ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (194ms) - ProcessInitializeOnLoadMethodAttributes (22ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (253ms) + ProcessInitializeOnLoadMethodAttributes (20ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 3.28 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3710. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.336600 ms (FindLiveObjects: 0.390500 ms CreateObjectMapping: 0.124900 ms MarkObjects: 2.776900 ms DeleteObjects: 0.043500 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.609400 ms (FindLiveObjects: 0.350700 ms CreateObjectMapping: 0.113200 ms MarkObjects: 3.099500 ms DeleteObjects: 0.045000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -1958,6 +4181,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -1967,50 +4191,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.521 seconds -Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +- Loaded All Assemblies, in 0.564 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.603 seconds -Domain Reload Profiling: 1124ms - BeginReloadAssembly (109ms) +- Finished resetting the current domain, in 0.599 seconds +Domain Reload Profiling: 1163ms + BeginReloadAssembly (111ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) + CreateAndSetChildDomain (30ms) RebuildCommonClasses (26ms) RebuildNativeTypeToScriptingClass (9ms) initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (356ms) - LoadAssemblies (184ms) + LoadAllAssembliesAndSetupDomain (396ms) + LoadAssemblies (178ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (221ms) - TypeCache.Refresh (218ms) - TypeCache.ScanAssembly (209ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (252ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (604ms) + ResolveRequiredComponents (5ms) + FinalizeReload (600ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (328ms) + SetupLoadedEditorAssemblies (303ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (240ms) - ProcessInitializeOnLoadMethodAttributes (21ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (32.4 KB). Loaded Objects now: 3713. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.125700 ms (FindLiveObjects: 0.217900 ms CreateObjectMapping: 0.106900 ms MarkObjects: 2.740600 ms DeleteObjects: 0.041500 ms) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3763. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.460300 ms (FindLiveObjects: 0.221900 ms CreateObjectMapping: 0.083000 ms MarkObjects: 2.114500 ms DeleteObjects: 0.039500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2021,6 +4245,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2030,50 +4255,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.517 seconds -Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 2.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.580 seconds -Domain Reload Profiling: 1097ms - BeginReloadAssembly (114ms) +- Finished resetting the current domain, in 0.790 seconds +Domain Reload Profiling: 1480ms + BeginReloadAssembly (144ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (342ms) - LoadAssemblies (188ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (469ms) + LoadAssemblies (271ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (206ms) - TypeCache.Refresh (202ms) - TypeCache.ScanAssembly (195ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (580ms) + AnalyzeDomain (267ms) + TypeCache.Refresh (259ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (790ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (324ms) + SetupLoadedEditorAssemblies (335ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (50ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 3.11 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 1.78 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3716. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.759500 ms (FindLiveObjects: 0.222100 ms CreateObjectMapping: 0.098100 ms MarkObjects: 3.390700 ms DeleteObjects: 0.047300 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.265600 ms (FindLiveObjects: 0.300700 ms CreateObjectMapping: 0.088700 ms MarkObjects: 2.837300 ms DeleteObjects: 0.038100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2084,6 +4309,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2093,50 +4319,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.524 seconds -Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 2.70 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.612 seconds -Domain Reload Profiling: 1136ms - BeginReloadAssembly (116ms) +- Finished resetting the current domain, in 0.637 seconds +Domain Reload Profiling: 1327ms + BeginReloadAssembly (151ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (347ms) - LoadAssemblies (188ms) + CreateAndSetChildDomain (46ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (467ms) + LoadAssemblies (259ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (210ms) - TypeCache.Refresh (207ms) - TypeCache.ScanAssembly (198ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (269ms) + TypeCache.ScanAssembly (258ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (613ms) + ResolveRequiredComponents (6ms) + FinalizeReload (638ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (337ms) + SetupLoadedEditorAssemblies (271ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (249ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.94 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3719. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.220400 ms (FindLiveObjects: 0.493600 ms CreateObjectMapping: 0.176200 ms MarkObjects: 2.510000 ms DeleteObjects: 0.039400 ms) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3769. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.513300 ms (FindLiveObjects: 0.277600 ms CreateObjectMapping: 0.126100 ms MarkObjects: 2.070400 ms DeleteObjects: 0.038400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2147,6 +4373,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2156,50 +4383,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.749 seconds -Refreshing native plugins compatible for Editor in 3.24 ms, found 3 plugins. +- Loaded All Assemblies, in 0.452 seconds +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.813 seconds -Domain Reload Profiling: 1563ms - BeginReloadAssembly (171ms) +- Finished resetting the current domain, in 0.507 seconds +Domain Reload Profiling: 959ms + BeginReloadAssembly (104ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (38ms) - RebuildCommonClasses (40ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (491ms) - LoadAssemblies (299ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (163ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (278ms) - TypeCache.Refresh (269ms) - TypeCache.ScanAssembly (258ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (6ms) - FinalizeReload (814ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (507ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (357ms) + SetupLoadedEditorAssemblies (261ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (58ms) - ProcessInitializeOnLoadAttributes (259ms) - ProcessInitializeOnLoadMethodAttributes (25ms) - AfterProcessingInitializeOnLoad (3ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 4.86 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3722. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.721200 ms (FindLiveObjects: 0.340600 ms CreateObjectMapping: 0.092100 ms MarkObjects: 3.239900 ms DeleteObjects: 0.047200 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.676300 ms (FindLiveObjects: 0.220300 ms CreateObjectMapping: 0.084500 ms MarkObjects: 2.330100 ms DeleteObjects: 0.040700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2210,6 +4437,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2219,50 +4447,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.646 seconds -Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +- Loaded All Assemblies, in 0.555 seconds +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.587 seconds -Domain Reload Profiling: 1233ms - BeginReloadAssembly (166ms) +- Finished resetting the current domain, in 0.600 seconds +Domain Reload Profiling: 1155ms + BeginReloadAssembly (121ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (50ms) - RebuildCommonClasses (39ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (394ms) - LoadAssemblies (253ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (373ms) + LoadAssemblies (191ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (217ms) - TypeCache.Refresh (212ms) - TypeCache.ScanAssembly (202ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (235ms) + TypeCache.Refresh (228ms) + TypeCache.ScanAssembly (218ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) ResolveRequiredComponents (4ms) - FinalizeReload (587ms) + FinalizeReload (600ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (300ms) + SetupLoadedEditorAssemblies (280ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (51ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (198ms) + ProcessInitializeOnLoadMethodAttributes (16ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.93 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3725. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.464600 ms (FindLiveObjects: 0.302300 ms CreateObjectMapping: 0.096600 ms MarkObjects: 2.028600 ms DeleteObjects: 0.036000 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.752200 ms (FindLiveObjects: 0.204800 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.426000 ms DeleteObjects: 0.040600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2273,6 +4501,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2282,50 +4511,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.520 seconds -Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.589 seconds -Domain Reload Profiling: 1110ms - BeginReloadAssembly (113ms) +- Finished resetting the current domain, in 0.447 seconds +Domain Reload Profiling: 886ms + BeginReloadAssembly (98ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (345ms) - LoadAssemblies (187ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (159ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (212ms) - TypeCache.Refresh (208ms) - TypeCache.ScanAssembly (200ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (590ms) + ResolveRequiredComponents (3ms) + FinalizeReload (448ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (323ms) + SetupLoadedEditorAssemblies (221ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (13ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3728. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.921900 ms (FindLiveObjects: 0.210500 ms CreateObjectMapping: 0.199600 ms MarkObjects: 2.467500 ms DeleteObjects: 0.043400 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.703600 ms (FindLiveObjects: 0.394100 ms CreateObjectMapping: 0.108500 ms MarkObjects: 2.152200 ms DeleteObjects: 0.047700 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2336,6 +4565,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2345,50 +4575,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.524 seconds -Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +- Loaded All Assemblies, in 0.595 seconds +Refreshing native plugins compatible for Editor in 5.37 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.610 seconds -Domain Reload Profiling: 1135ms - BeginReloadAssembly (115ms) +- Finished resetting the current domain, in 0.635 seconds +Domain Reload Profiling: 1230ms + BeginReloadAssembly (119ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (27ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (351ms) - LoadAssemblies (191ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (411ms) + LoadAssemblies (210ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (213ms) - TypeCache.Refresh (209ms) - TypeCache.ScanAssembly (201ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (257ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (242ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (4ms) - FinalizeReload (611ms) + FinalizeReload (636ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (329ms) + SetupLoadedEditorAssemblies (327ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (7ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (22ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (24ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3731. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.856200 ms (FindLiveObjects: 0.273400 ms CreateObjectMapping: 0.101800 ms MarkObjects: 2.437200 ms DeleteObjects: 0.043100 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3781. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.535600 ms (FindLiveObjects: 0.258700 ms CreateObjectMapping: 0.092300 ms MarkObjects: 3.096100 ms DeleteObjects: 0.085800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2399,6 +4629,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2408,50 +4639,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.463 seconds -Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +- Loaded All Assemblies, in 0.553 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.605 seconds -Domain Reload Profiling: 1069ms - BeginReloadAssembly (103ms) +- Finished resetting the current domain, in 0.563 seconds +Domain Reload Profiling: 1116ms + BeginReloadAssembly (117ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (311ms) - LoadAssemblies (170ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (376ms) + LoadAssemblies (209ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (175ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (213ms) + TypeCache.ScanAssembly (204ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (605ms) + ResolveRequiredComponents (4ms) + FinalizeReload (563ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (254ms) + SetupLoadedEditorAssemblies (274ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (43ms) - ProcessInitializeOnLoadAttributes (180ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (23ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.40 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3734. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.666700 ms (FindLiveObjects: 0.391600 ms CreateObjectMapping: 0.115300 ms MarkObjects: 2.110200 ms DeleteObjects: 0.048600 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3784. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.251200 ms (FindLiveObjects: 0.319400 ms CreateObjectMapping: 0.109700 ms MarkObjects: 2.778900 ms DeleteObjects: 0.042200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2462,6 +4693,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2471,50 +4703,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.484 seconds -Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +- Loaded All Assemblies, in 0.519 seconds +Refreshing native plugins compatible for Editor in 2.60 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.559 seconds -Domain Reload Profiling: 1043ms - BeginReloadAssembly (107ms) +- Finished resetting the current domain, in 0.536 seconds +Domain Reload Profiling: 1056ms + BeginReloadAssembly (113ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (325ms) - LoadAssemblies (173ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (190ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (201ms) - TypeCache.Refresh (198ms) - TypeCache.ScanAssembly (189ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) ResolveRequiredComponents (3ms) - FinalizeReload (559ms) + FinalizeReload (537ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (306ms) + SetupLoadedEditorAssemblies (264ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (52ms) - ProcessInitializeOnLoadAttributes (223ms) - ProcessInitializeOnLoadMethodAttributes (22ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (15ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3737. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.711700 ms (FindLiveObjects: 0.206400 ms CreateObjectMapping: 0.143400 ms MarkObjects: 2.308900 ms DeleteObjects: 0.052200 ms) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3787. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.040500 ms (FindLiveObjects: 0.209000 ms CreateObjectMapping: 0.078700 ms MarkObjects: 2.713500 ms DeleteObjects: 0.038400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2525,6 +4757,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2534,50 +4767,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.545 seconds -Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +- Loaded All Assemblies, in 0.682 seconds +Refreshing native plugins compatible for Editor in 8.39 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.614 seconds -Domain Reload Profiling: 1159ms - BeginReloadAssembly (126ms) +- Finished resetting the current domain, in 0.773 seconds +Domain Reload Profiling: 1455ms + BeginReloadAssembly (148ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (34ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (358ms) - LoadAssemblies (203ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (452ms) + LoadAssemblies (247ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (214ms) - TypeCache.Refresh (211ms) - TypeCache.ScanAssembly (202ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (615ms) + AnalyzeDomain (276ms) + TypeCache.Refresh (268ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (774ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (325ms) + SetupLoadedEditorAssemblies (352ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3740. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 3.065300 ms (FindLiveObjects: 0.223800 ms CreateObjectMapping: 0.096200 ms MarkObjects: 2.700700 ms DeleteObjects: 0.043700 ms) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3790. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.334300 ms (FindLiveObjects: 0.251300 ms CreateObjectMapping: 0.089400 ms MarkObjects: 2.953200 ms DeleteObjects: 0.039400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2588,6 +4821,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2597,50 +4831,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.507 seconds -Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +- Loaded All Assemblies, in 0.630 seconds +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.564 seconds -Domain Reload Profiling: 1071ms - BeginReloadAssembly (116ms) +- Finished resetting the current domain, in 0.545 seconds +Domain Reload Profiling: 1174ms + BeginReloadAssembly (137ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (330ms) - LoadAssemblies (184ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (416ms) + LoadAssemblies (252ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (202ms) - TypeCache.Refresh (199ms) - TypeCache.ScanAssembly (191ms) + AnalyzeDomain (231ms) + TypeCache.Refresh (228ms) + TypeCache.ScanAssembly (219ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (564ms) + FinalizeReload (545ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (299ms) + SetupLoadedEditorAssemblies (290ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) + InitializePlatformSupportModulesInManaged (3ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (220ms) - ProcessInitializeOnLoadMethodAttributes (20ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.96 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3743. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.673800 ms (FindLiveObjects: 0.203400 ms CreateObjectMapping: 0.087000 ms MarkObjects: 2.336100 ms DeleteObjects: 0.046100 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3793. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.655700 ms (FindLiveObjects: 0.372600 ms CreateObjectMapping: 0.079600 ms MarkObjects: 2.165900 ms DeleteObjects: 0.036600 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2651,6 +4885,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2660,30 +4895,30 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.527 seconds -Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +- Loaded All Assemblies, in 0.513 seconds +Refreshing native plugins compatible for Editor in 3.88 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.607 seconds -Domain Reload Profiling: 1134ms - BeginReloadAssembly (121ms) +- Finished resetting the current domain, in 0.646 seconds +Domain Reload Profiling: 1159ms + BeginReloadAssembly (119ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (10ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (340ms) - LoadAssemblies (188ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (187ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (207ms) - TypeCache.Refresh (204ms) - TypeCache.ScanAssembly (196ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (608ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (193ms) + TypeCache.ScanAssembly (185ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (7ms) + FinalizeReload (646ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (335ms) @@ -2691,19 +4926,19 @@ Domain Reload Profiling: 1134ms InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (243ms) - ProcessInitializeOnLoadMethodAttributes (25ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 2.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3746. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.683000 ms (FindLiveObjects: 0.206200 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.344400 ms DeleteObjects: 0.038500 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3796. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.694400 ms (FindLiveObjects: 0.251100 ms CreateObjectMapping: 0.258400 ms MarkObjects: 2.145900 ms DeleteObjects: 0.038100 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2714,6 +4949,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2723,50 +4959,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.466 seconds -Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +- Loaded All Assemblies, in 0.481 seconds +Refreshing native plugins compatible for Editor in 2.76 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.670 seconds -Domain Reload Profiling: 1136ms - BeginReloadAssembly (101ms) +- Finished resetting the current domain, in 0.497 seconds +Domain Reload Profiling: 978ms + BeginReloadAssembly (103ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (317ms) - LoadAssemblies (188ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (174ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (173ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (670ms) + FinalizeReload (497ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (269ms) + SetupLoadedEditorAssemblies (243ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (196ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (14ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.68 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3749. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.906900 ms (FindLiveObjects: 0.249600 ms CreateObjectMapping: 0.121500 ms MarkObjects: 2.492600 ms DeleteObjects: 0.041900 ms) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3799. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.697000 ms (FindLiveObjects: 0.210900 ms CreateObjectMapping: 0.087100 ms MarkObjects: 2.354600 ms DeleteObjects: 0.043500 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2777,6 +5013,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> @@ -2786,50 +5023,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.435 seconds -Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +- Loaded All Assemblies, in 0.753 seconds +Refreshing native plugins compatible for Editor in 2.37 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.501 seconds -Domain Reload Profiling: 936ms - BeginReloadAssembly (100ms) +- Finished resetting the current domain, in 0.865 seconds +Domain Reload Profiling: 1618ms + BeginReloadAssembly (172ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (287ms) - LoadAssemblies (161ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (496ms) + LoadAssemblies (277ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (170ms) - TypeCache.Refresh (168ms) - TypeCache.ScanAssembly (160ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (502ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (291ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (865ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (262ms) + SetupLoadedEditorAssemblies (402ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (189ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (294ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3752. -Memory consumption went from 122.0 MB to 122.0 MB. -Total: 2.732400 ms (FindLiveObjects: 0.203400 ms CreateObjectMapping: 0.125100 ms MarkObjects: 2.364300 ms DeleteObjects: 0.038900 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3802. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.226600 ms (FindLiveObjects: 0.288600 ms CreateObjectMapping: 0.114100 ms MarkObjects: 2.772900 ms DeleteObjects: 0.049800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -2840,6 +5077,7 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/LMC/Logs/AssetImportWorker1-prev.log b/LMC/Logs/AssetImportWorker1-prev.log index fe57bd3b..68a0bb9b 100644 --- a/LMC/Logs/AssetImportWorker1-prev.log +++ b/LMC/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker1.log -srvPort -57156 +57300 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [28692] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 4030211062 [EditorId] 4030211062 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [20360] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 483622443 [EditorId] 483622443 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [28692] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 4030211062 [EditorId] 4030211062 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [20360] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 483622443 [EditorId] 483622443 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 17.68 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 5.33 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,44 +69,44 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56900 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56016 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.004738 seconds. -- Loaded All Assemblies, in 0.339 seconds +Registered in 0.002592 seconds. +- Loaded All Assemblies, in 0.234 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.214 seconds -Domain Reload Profiling: 553ms - BeginReloadAssembly (132ms) +- Finished resetting the current domain, in 0.205 seconds +Domain Reload Profiling: 439ms + BeginReloadAssembly (63ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (49ms) - LoadAllAssembliesAndSetupDomain (119ms) - LoadAssemblies (130ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (100ms) + LoadAssemblies (63ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (114ms) - TypeCache.Refresh (113ms) - TypeCache.ScanAssembly (101ms) + AnalyzeDomain (98ms) + TypeCache.Refresh (97ms) + TypeCache.ScanAssembly (88ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (1ms) - FinalizeReload (214ms) + ResolveRequiredComponents (0ms) + FinalizeReload (205ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (169ms) + SetupLoadedEditorAssemblies (159ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (8ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (116ms) - ProcessInitializeOnLoadMethodAttributes (36ms) + ProcessInitializeOnLoadAttributes (107ms) + ProcessInitializeOnLoadMethodAttributes (38ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -116,51 +116,51 @@ Worker process is ready to serve import requests Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.583 seconds -Refreshing native plugins compatible for Editor in 2.67 ms, found 3 plugins. +- Loaded All Assemblies, in 0.539 seconds +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.369 seconds -Domain Reload Profiling: 953ms +- Finished resetting the current domain, in 0.368 seconds +Domain Reload Profiling: 908ms BeginReloadAssembly (109ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (17ms) - RebuildCommonClasses (25ms) + CreateAndSetChildDomain (18ms) + RebuildCommonClasses (29ms) RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (411ms) - LoadAssemblies (248ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (365ms) + LoadAssemblies (206ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (224ms) - TypeCache.Refresh (210ms) - TypeCache.ScanAssembly (198ms) - ScanForSourceGeneratedMonoScriptInfo (12ms) + AnalyzeDomain (218ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) ResolveRequiredComponents (3ms) - FinalizeReload (370ms) + FinalizeReload (369ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (257ms) + SetupLoadedEditorAssemblies (258ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) + InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (195ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (193ms) ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (1ms) + AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) Unloading 31 unused Assets / (56.5 KB). Loaded Objects now: 3580. -Memory consumption went from 121.1 MB to 121.1 MB. -Total: 2.517300 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.081300 ms MarkObjects: 2.135900 ms DeleteObjects: 0.085300 ms) +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 3.491100 ms (FindLiveObjects: 0.289000 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.955300 ms DeleteObjects: 0.160000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -176,69 +176,2652 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 551765.929082 seconds. - path: Assets/robot.fbx - artifactKey: Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/robot.fbx using Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3a05f28786e54c0719bc61cc7d08fa6') in 0.165300 seconds + Time since last request: 552013.681073 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fce8d67e67a527100e8aa88b93cbd08') in 0.114461 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 113 +Number of asset objects unloaded after import = 61 ======================================================================== -Received Import Request. - Time since last request: 0.000025 seconds. - path: Assets/basket.fbx - artifactKey: Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/basket.fbx using Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '05fe0b2faded83c15d4ca38be8205c36') in 0.031884 seconds -Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 17 +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.479 seconds +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.453 seconds +Domain Reload Profiling: 932ms + BeginReloadAssembly (124ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (304ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (172ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (453ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (219ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. +Memory consumption went from 121.4 MB to 121.3 MB. +Total: 2.392800 ms (FindLiveObjects: 0.184400 ms CreateObjectMapping: 0.086700 ms MarkObjects: 2.077900 ms DeleteObjects: 0.042700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.496 seconds -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +- Loaded All Assemblies, in 0.442 seconds +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.841 seconds -Domain Reload Profiling: 1337ms - BeginReloadAssembly (123ms) +- Finished resetting the current domain, in 0.519 seconds +Domain Reload Profiling: 961ms + BeginReloadAssembly (101ms) ExecutionOrderSort (0ms) DisableScriptedObjects (3ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) + CreateAndSetChildDomain (28ms) RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (319ms) - LoadAssemblies (198ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (293ms) + LoadAssemblies (158ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (175ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (170ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (841ms) + FinalizeReload (519ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (254ms) + SetupLoadedEditorAssemblies (260ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (44ms) - ProcessInitializeOnLoadAttributes (184ms) - ProcessInitializeOnLoadMethodAttributes (16ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3595. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 2.810500 ms (FindLiveObjects: 0.269100 ms CreateObjectMapping: 0.207700 ms MarkObjects: 2.292200 ms DeleteObjects: 0.040500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.972 seconds +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.817 seconds +Domain Reload Profiling: 1788ms + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (735ms) + LoadAssemblies (471ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (337ms) + TypeCache.Refresh (330ms) + TypeCache.ScanAssembly (305ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (4ms) + FinalizeReload (817ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (173ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3598. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 3.877300 ms (FindLiveObjects: 0.193300 ms CreateObjectMapping: 0.083900 ms MarkObjects: 3.501300 ms DeleteObjects: 0.097800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 618.776866 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78cc6a26c683c67f5df64ccb0cbbc298') in 0.021331 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.905 seconds +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.198 seconds +Domain Reload Profiling: 2103ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (676ms) + LoadAssemblies (440ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (309ms) + TypeCache.Refresh (299ms) + TypeCache.ScanAssembly (284ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (1199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (275ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3628. -Memory consumption went from 123.3 MB to 123.3 MB. -Total: 2.326900 ms (FindLiveObjects: 0.195900 ms CreateObjectMapping: 0.077500 ms MarkObjects: 2.017500 ms DeleteObjects: 0.035300 ms) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3601. +Memory consumption went from 121.4 MB to 121.4 MB. +Total: 2.641100 ms (FindLiveObjects: 0.179700 ms CreateObjectMapping: 0.077400 ms MarkObjects: 2.341300 ms DeleteObjects: 0.041600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.734 seconds +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.057 seconds +Domain Reload Profiling: 1791ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (509ms) + LoadAssemblies (286ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (298ms) + TypeCache.Refresh (291ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1058ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (6ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3604. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 3.135000 ms (FindLiveObjects: 0.259500 ms CreateObjectMapping: 0.090800 ms MarkObjects: 2.746000 ms DeleteObjects: 0.037900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.460 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (306ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (492ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3607. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 2.187900 ms (FindLiveObjects: 0.170500 ms CreateObjectMapping: 0.063600 ms MarkObjects: 1.918600 ms DeleteObjects: 0.034400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.732 seconds +Refreshing native plugins compatible for Editor in 2.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.788 seconds +Domain Reload Profiling: 1520ms + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (509ms) + LoadAssemblies (286ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (293ms) + TypeCache.Refresh (285ms) + TypeCache.ScanAssembly (276ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (789ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3610. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 3.065300 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.079700 ms MarkObjects: 2.708300 ms DeleteObjects: 0.037700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.469 seconds +Domain Reload Profiling: 916ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (469ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3613. +Memory consumption went from 121.6 MB to 121.6 MB. +Total: 3.037100 ms (FindLiveObjects: 0.332700 ms CreateObjectMapping: 0.162900 ms MarkObjects: 2.496500 ms DeleteObjects: 0.043700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.456 seconds +Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.453 seconds +Domain Reload Profiling: 910ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (453ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3616. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.542600 ms (FindLiveObjects: 0.202800 ms CreateObjectMapping: 0.078200 ms MarkObjects: 2.215400 ms DeleteObjects: 0.045500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.711 seconds +Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.792 seconds +Domain Reload Profiling: 1503ms + BeginReloadAssembly (148ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (245ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (307ms) + TypeCache.Refresh (299ms) + TypeCache.ScanAssembly (290ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (793ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3619. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 3.250900 ms (FindLiveObjects: 0.221400 ms CreateObjectMapping: 0.078000 ms MarkObjects: 2.915300 ms DeleteObjects: 0.035000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.454 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.529 seconds +Domain Reload Profiling: 983ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (306ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (530ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (293ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3622. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.608000 ms (FindLiveObjects: 0.295800 ms CreateObjectMapping: 0.097500 ms MarkObjects: 2.171100 ms DeleteObjects: 0.042900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.446 seconds +Domain Reload Profiling: 893ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (446ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3625. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.439200 ms (FindLiveObjects: 0.166500 ms CreateObjectMapping: 0.068300 ms MarkObjects: 2.169700 ms DeleteObjects: 0.033700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.436 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.457 seconds +Domain Reload Profiling: 893ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (458ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3628. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.743600 ms (FindLiveObjects: 0.294400 ms CreateObjectMapping: 0.099000 ms MarkObjects: 2.305700 ms DeleteObjects: 0.043300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.497 seconds +Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.754 seconds +Domain Reload Profiling: 1251ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (196ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (755ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (201ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (143ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3631. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.152000 ms (FindLiveObjects: 0.173800 ms CreateObjectMapping: 0.077500 ms MarkObjects: 1.861500 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.430 seconds +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.451 seconds +Domain Reload Profiling: 881ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (283ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (451ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (161ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3634. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.561200 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.199000 ms DeleteObjects: 0.037200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.519 seconds +Domain Reload Profiling: 963ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (161ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (519ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (280ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (204ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3637. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.502600 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.095700 ms MarkObjects: 2.140900 ms DeleteObjects: 0.036400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.472 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.820 seconds +Domain Reload Profiling: 1292ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (312ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (820ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (265ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3640. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.478600 ms (FindLiveObjects: 0.372500 ms CreateObjectMapping: 0.095800 ms MarkObjects: 1.925800 ms DeleteObjects: 0.083800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.471 seconds +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.586 seconds +Domain Reload Profiling: 1057ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (315ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (586ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3643. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 3.003900 ms (FindLiveObjects: 0.333600 ms CreateObjectMapping: 0.133600 ms MarkObjects: 2.499100 ms DeleteObjects: 0.036600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.475 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.805 seconds +Domain Reload Profiling: 1280ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (190ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (805ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3646. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.576500 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.235500 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.442 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.540 seconds +Domain Reload Profiling: 983ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (541ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (270ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3649. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.875300 ms (FindLiveObjects: 0.370200 ms CreateObjectMapping: 0.146700 ms MarkObjects: 2.294900 ms DeleteObjects: 0.062400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.684 seconds +Refreshing native plugins compatible for Editor in 2.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.151 seconds +Domain Reload Profiling: 1836ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (470ms) + LoadAssemblies (277ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (250ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1152ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (370ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3652. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 3.557800 ms (FindLiveObjects: 0.341900 ms CreateObjectMapping: 0.159400 ms MarkObjects: 3.004500 ms DeleteObjects: 0.051100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.588 seconds +Domain Reload Profiling: 1072ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (186ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (588ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (302ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3655. +Memory consumption went from 121.7 MB to 121.6 MB. +Total: 2.667800 ms (FindLiveObjects: 0.283900 ms CreateObjectMapping: 0.093300 ms MarkObjects: 2.217500 ms DeleteObjects: 0.072300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.582 seconds +Domain Reload Profiling: 1020ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (582ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (294ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3658. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.387800 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.132500 ms MarkObjects: 1.986400 ms DeleteObjects: 0.039500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.450 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.537 seconds +Domain Reload Profiling: 987ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (537ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (287ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3661. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.521300 ms (FindLiveObjects: 0.312200 ms CreateObjectMapping: 0.095700 ms MarkObjects: 2.076100 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.556 seconds +Domain Reload Profiling: 1022ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (185ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (556ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (290ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3664. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.644700 ms (FindLiveObjects: 0.326200 ms CreateObjectMapping: 0.115900 ms MarkObjects: 2.161600 ms DeleteObjects: 0.040100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.512 seconds +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.612 seconds +Domain Reload Profiling: 1124ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (340ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (205ms) + TypeCache.Refresh (200ms) + TypeCache.ScanAssembly (192ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (613ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (321ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3667. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.376000 ms (FindLiveObjects: 0.223500 ms CreateObjectMapping: 0.107000 ms MarkObjects: 2.986800 ms DeleteObjects: 0.057600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.515 seconds +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.621 seconds +Domain Reload Profiling: 1136ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (344ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (211ms) + TypeCache.Refresh (207ms) + TypeCache.ScanAssembly (198ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (621ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (324ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (236ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3670. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.044300 ms (FindLiveObjects: 0.200100 ms CreateObjectMapping: 0.089500 ms MarkObjects: 2.709800 ms DeleteObjects: 0.043800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.500 seconds +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.547 seconds +Domain Reload Profiling: 1047ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (330ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (199ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (548ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (275ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (199ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3673. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.898300 ms (FindLiveObjects: 0.328700 ms CreateObjectMapping: 0.108000 ms MarkObjects: 2.411300 ms DeleteObjects: 0.049500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.533 seconds +Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.603 seconds +Domain Reload Profiling: 1136ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (360ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (225ms) + TypeCache.Refresh (222ms) + TypeCache.ScanAssembly (214ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (603ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (326ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (239ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3676. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.146600 ms (FindLiveObjects: 0.210000 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.808200 ms DeleteObjects: 0.040000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.525 seconds +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.583 seconds +Domain Reload Profiling: 1108ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (211ms) + TypeCache.Refresh (207ms) + TypeCache.ScanAssembly (199ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (583ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3679. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.616200 ms (FindLiveObjects: 0.251100 ms CreateObjectMapping: 0.100200 ms MarkObjects: 3.218900 ms DeleteObjects: 0.044700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.524 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.608 seconds +Domain Reload Profiling: 1132ms + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (349ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (207ms) + TypeCache.ScanAssembly (199ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (608ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3682. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.151000 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.090100 ms MarkObjects: 2.797900 ms DeleteObjects: 0.048000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.750 seconds +Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.812 seconds +Domain Reload Profiling: 1563ms + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (493ms) + LoadAssemblies (291ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (287ms) + TypeCache.Refresh (280ms) + TypeCache.ScanAssembly (270ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (813ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3685. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.435900 ms (FindLiveObjects: 0.261600 ms CreateObjectMapping: 0.163900 ms MarkObjects: 2.969200 ms DeleteObjects: 0.040300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.625 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.609 seconds +Domain Reload Profiling: 1234ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (393ms) + LoadAssemblies (264ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (198ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (609ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (305ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (219ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3688. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.773200 ms (FindLiveObjects: 0.236700 ms CreateObjectMapping: 0.107400 ms MarkObjects: 2.380400 ms DeleteObjects: 0.047600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.594 seconds +Domain Reload Profiling: 1111ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (187ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (205ms) + TypeCache.ScanAssembly (197ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (595ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3691. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.977400 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.092000 ms MarkObjects: 2.615900 ms DeleteObjects: 0.053600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.530 seconds +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.609 seconds +Domain Reload Profiling: 1139ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (354ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (219ms) + TypeCache.Refresh (214ms) + TypeCache.ScanAssembly (205ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (609ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (332ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3694. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.882000 ms (FindLiveObjects: 0.339200 ms CreateObjectMapping: 0.115900 ms MarkObjects: 2.383200 ms DeleteObjects: 0.042800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.463 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.606 seconds +Domain Reload Profiling: 1070ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (311ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (186ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (607ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (255ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3697. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.664100 ms (FindLiveObjects: 0.409800 ms CreateObjectMapping: 0.131300 ms MarkObjects: 2.087800 ms DeleteObjects: 0.034200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.485 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.557 seconds +Domain Reload Profiling: 1043ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (558ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (304ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (222ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.029200 ms (FindLiveObjects: 0.251800 ms CreateObjectMapping: 0.137300 ms MarkObjects: 2.583300 ms DeleteObjects: 0.055800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.528 seconds +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.620 seconds +Domain Reload Profiling: 1148ms + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (216ms) + TypeCache.Refresh (213ms) + TypeCache.ScanAssembly (203ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (620ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3703. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.682800 ms (FindLiveObjects: 0.256100 ms CreateObjectMapping: 0.145800 ms MarkObjects: 2.239800 ms DeleteObjects: 0.040400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.507 seconds +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.566 seconds +Domain Reload Profiling: 1073ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (201ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (189ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (567ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (218ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3706. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.682500 ms (FindLiveObjects: 0.209300 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.347700 ms DeleteObjects: 0.038600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.594 seconds +Domain Reload Profiling: 1109ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (341ms) + LoadAssemblies (182ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (197ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (594ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3709. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 3.028000 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.285500 ms MarkObjects: 2.477800 ms DeleteObjects: 0.047400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.463 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.671 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (314ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (671ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (270ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (196ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3712. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.752300 ms (FindLiveObjects: 0.250900 ms CreateObjectMapping: 0.101300 ms MarkObjects: 2.356500 ms DeleteObjects: 0.043000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.434 seconds +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 934ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (500ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (261ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3715. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.406000 ms (FindLiveObjects: 0.191700 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.025000 ms DeleteObjects: 0.104800 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/LMC/Logs/AssetImportWorker1.log b/LMC/Logs/AssetImportWorker1.log index 68a0bb9b..a3a855bb 100644 --- a/LMC/Logs/AssetImportWorker1.log +++ b/LMC/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker1.log -srvPort -57300 +58815 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [20360] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 483622443 [EditorId] 483622443 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [30940] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3728845930 [EditorId] 3728845930 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [20360] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 483622443 [EditorId] 483622443 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [30940] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3728845930 [EditorId] 3728845930 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 5.33 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 18.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,44 +69,44 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56016 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56484 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002592 seconds. -- Loaded All Assemblies, in 0.234 seconds +Registered in 0.006184 seconds. +- Loaded All Assemblies, in 0.348 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly - Finished resetting the current domain, in 0.205 seconds -Domain Reload Profiling: 439ms - BeginReloadAssembly (63ms) +Domain Reload Profiling: 553ms + BeginReloadAssembly (152ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (38ms) - LoadAllAssembliesAndSetupDomain (100ms) - LoadAssemblies (63ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (44ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (151ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (98ms) - TypeCache.Refresh (97ms) - TypeCache.ScanAssembly (88ms) + AnalyzeDomain (114ms) + TypeCache.Refresh (114ms) + TypeCache.ScanAssembly (96ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (0ms) - FinalizeReload (205ms) + FinalizeReload (206ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (159ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (8ms) + SetLoadedEditorAssemblies (7ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (107ms) - ProcessInitializeOnLoadMethodAttributes (38ms) + ProcessInitializeOnLoadAttributes (103ms) + ProcessInitializeOnLoadMethodAttributes (39ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) @@ -116,51 +116,51 @@ Worker process is ready to serve import requests Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.539 seconds -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +- Loaded All Assemblies, in 1.161 seconds +Refreshing native plugins compatible for Editor in 2.77 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.368 seconds -Domain Reload Profiling: 908ms - BeginReloadAssembly (109ms) +- Finished resetting the current domain, in 0.483 seconds +Domain Reload Profiling: 1645ms + BeginReloadAssembly (168ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (18ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (365ms) - LoadAssemblies (206ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (218ms) - TypeCache.Refresh (204ms) - TypeCache.ScanAssembly (196ms) - ScanForSourceGeneratedMonoScriptInfo (10ms) - ResolveRequiredComponents (3ms) - FinalizeReload (369ms) + CreateAndSetChildDomain (21ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (922ms) + LoadAssemblies (735ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (4ms) + FinalizeReload (483ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (258ms) + SetupLoadedEditorAssemblies (330ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (3ms) + SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (41ms) - ProcessInitializeOnLoadAttributes (193ms) - ProcessInitializeOnLoadMethodAttributes (15ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (22ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (8ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) -Unloading 31 unused Assets / (56.5 KB). Loaded Objects now: 3580. -Memory consumption went from 121.0 MB to 121.0 MB. -Total: 3.491100 ms (FindLiveObjects: 0.289000 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.955300 ms DeleteObjects: 0.160000 ms) +Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 120.9 MB. +Total: 10.183200 ms (FindLiveObjects: 0.350900 ms CreateObjectMapping: 0.117100 ms MarkObjects: 9.548500 ms DeleteObjects: 0.165300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -176,2663 +176,321 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 552013.681073 seconds. - path: Assets/A.prefab - artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fce8d67e67a527100e8aa88b93cbd08') in 0.114461 seconds + Time since last request: 559123.918889 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf + artifactKey: Guid(c9f6d0e7bc8541498c9a4799ba184ede) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold.ttf using Guid(c9f6d0e7bc8541498c9a4799ba184ede) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a0e7097ae39e329a04c1dfa5b5418cd2') in 0.149543 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 61 -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.479 seconds -Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.453 seconds -Domain Reload Profiling: 932ms - BeginReloadAssembly (124ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (304ms) - LoadAssemblies (174ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (172ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (453ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (219ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (158ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. -Memory consumption went from 121.4 MB to 121.3 MB. -Total: 2.392800 ms (FindLiveObjects: 0.184400 ms CreateObjectMapping: 0.086700 ms MarkObjects: 2.077900 ms DeleteObjects: 0.042700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Number of asset objects unloaded after import = 3 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.442 seconds -Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.519 seconds -Domain Reload Profiling: 961ms - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (293ms) - LoadAssemblies (158ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (170ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (519ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (260ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (44ms) - ProcessInitializeOnLoadAttributes (188ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3595. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 2.810500 ms (FindLiveObjects: 0.269100 ms CreateObjectMapping: 0.207700 ms MarkObjects: 2.292200 ms DeleteObjects: 0.040500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader + artifactKey: Guid(a02a7d8c237544f1962732b55a9aebf1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Overlay.shader using Guid(a02a7d8c237544f1962732b55a9aebf1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1691af8d46d2b87f84bf87f3340d8280') in 0.032799 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.972 seconds -Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.817 seconds -Domain Reload Profiling: 1788ms - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (735ms) - LoadAssemblies (471ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (337ms) - TypeCache.Refresh (330ms) - TypeCache.ScanAssembly (305ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (4ms) - FinalizeReload (817ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (236ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (173ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3598. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 3.877300 ms (FindLiveObjects: 0.193300 ms CreateObjectMapping: 0.083900 ms MarkObjects: 3.501300 ms DeleteObjects: 0.097800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000076 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Logo Scene.mat + artifactKey: Guid(c719e38f25a9480abd2480ab621a2949) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Logo Scene.mat using Guid(c719e38f25a9480abd2480ab621a2949) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '87eabcbcf92cbd67cd38c1ed8b92f525') in 0.038016 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== Received Import Request. - Time since last request: 618.776866 seconds. - path: Assets/Initalize.cs - artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78cc6a26c683c67f5df64ccb0cbbc298') in 0.021331 seconds + Time since last request: 0.000031 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne.png + artifactKey: Guid(dffef66376be4fa480fb02b19edbe903) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne.png using Guid(dffef66376be4fa480fb02b19edbe903) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dc2a8b1e7b26ecc2f009e11ce0f2294d') in 0.015771 seconds Number of updated asset objects reloaded before import = 0 Number of asset objects unloaded after import = 0 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.905 seconds -Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.198 seconds -Domain Reload Profiling: 2103ms - BeginReloadAssembly (153ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (26ms) - LoadAllAssembliesAndSetupDomain (676ms) - LoadAssemblies (440ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (309ms) - TypeCache.Refresh (299ms) - TypeCache.ScanAssembly (284ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (8ms) - FinalizeReload (1199ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (376ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (8ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (275ms) - ProcessInitializeOnLoadMethodAttributes (22ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (10ms) -Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3601. -Memory consumption went from 121.4 MB to 121.4 MB. -Total: 2.641100 ms (FindLiveObjects: 0.179700 ms CreateObjectMapping: 0.077400 ms MarkObjects: 2.341300 ms DeleteObjects: 0.041600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000098 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs + artifactKey: Guid(8ef7be1c625941f7ba8ed7cc71718c0d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01_UGUI.cs using Guid(8ef7be1c625941f7ba8ed7cc71718c0d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '76103ddbbca90c0e0ca0be49632966c6') in 0.018595 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.734 seconds -Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.057 seconds -Domain Reload Profiling: 1791ms - BeginReloadAssembly (149ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - RebuildCommonClasses (33ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (509ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (298ms) - TypeCache.Refresh (291ms) - TypeCache.ScanAssembly (280ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (5ms) - FinalizeReload (1058ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (334ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (6ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 2.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3604. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 3.135000 ms (FindLiveObjects: 0.259500 ms CreateObjectMapping: 0.090800 ms MarkObjects: 2.746000 ms DeleteObjects: 0.037900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader + artifactKey: Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Custom-Atlas.shader using Guid(48bb5f55d8670e349b6e614913f9d910) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ce6681fbd47efa2a33beb949a8fa5163') in 0.023961 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.460 seconds -Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.492 seconds -Domain Reload Profiling: 952ms - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (306ms) - LoadAssemblies (166ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (179ms) - TypeCache.ScanAssembly (171ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (492ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (239ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (171ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (4ms) -Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3607. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 2.187900 ms (FindLiveObjects: 0.170500 ms CreateObjectMapping: 0.063600 ms MarkObjects: 1.918600 ms DeleteObjects: 0.034400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000081 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Crate - Surface Shader Scene.mat + artifactKey: Guid(e6b9b44320f4448d9d5e0ee634259966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Crate - Surface Shader Scene.mat using Guid(e6b9b44320f4448d9d5e0ee634259966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '98883ab401587dbd3a24b0210f1ed80e') in 0.043694 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.732 seconds -Refreshing native plugins compatible for Editor in 2.58 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.788 seconds -Domain Reload Profiling: 1520ms - BeginReloadAssembly (142ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (36ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (509ms) - LoadAssemblies (286ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (293ms) - TypeCache.Refresh (285ms) - TypeCache.ScanAssembly (276ms) - ScanForSourceGeneratedMonoScriptInfo (3ms) - ResolveRequiredComponents (5ms) - FinalizeReload (789ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (321ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (234ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3610. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 3.065300 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.079700 ms MarkObjects: 2.708300 ms DeleteObjects: 0.037700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/Scenes/SampleScene.unity + artifactKey: Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Scenes/SampleScene.unity using Guid(9fc0d4010bbf28b4594072e72b8655ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'cf829d3bb7b58245cef858725cbbb31d') in 0.014734 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.447 seconds -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.469 seconds -Domain Reload Profiling: 916ms - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (296ms) - LoadAssemblies (170ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (172ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (161ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (469ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (242ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (179ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3613. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 3.037100 ms (FindLiveObjects: 0.332700 ms CreateObjectMapping: 0.162900 ms MarkObjects: 2.496500 ms DeleteObjects: 0.043700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.456 seconds -Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.453 seconds -Domain Reload Profiling: 910ms - BeginReloadAssembly (102ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (294ms) - LoadAssemblies (164ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (173ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (453ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (39ms) - ProcessInitializeOnLoadAttributes (167ms) - ProcessInitializeOnLoadMethodAttributes (13ms) - AfterProcessingInitializeOnLoad (1ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3616. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.542600 ms (FindLiveObjects: 0.202800 ms CreateObjectMapping: 0.078200 ms MarkObjects: 2.215400 ms DeleteObjects: 0.045500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.711 seconds -Refreshing native plugins compatible for Editor in 1.97 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.792 seconds -Domain Reload Profiling: 1503ms - BeginReloadAssembly (148ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (37ms) - RebuildCommonClasses (34ms) - RebuildNativeTypeToScriptingClass (13ms) - initialDomainReloadingComplete (29ms) - LoadAllAssembliesAndSetupDomain (487ms) - LoadAssemblies (245ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (307ms) - TypeCache.Refresh (299ms) - TypeCache.ScanAssembly (290ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (5ms) - FinalizeReload (793ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (352ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (6ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (63ms) - ProcessInitializeOnLoadAttributes (254ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 3.24 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3619. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 3.250900 ms (FindLiveObjects: 0.221400 ms CreateObjectMapping: 0.078000 ms MarkObjects: 2.915300 ms DeleteObjects: 0.035000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.454 seconds -Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.529 seconds -Domain Reload Profiling: 983ms - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (306ms) - LoadAssemblies (166ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (184ms) - TypeCache.Refresh (181ms) - TypeCache.ScanAssembly (173ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (530ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (293ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (214ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3622. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.608000 ms (FindLiveObjects: 0.295800 ms CreateObjectMapping: 0.097500 ms MarkObjects: 2.171100 ms DeleteObjects: 0.042900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.447 seconds -Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.446 seconds -Domain Reload Profiling: 893ms - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (298ms) - LoadAssemblies (160ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (181ms) - TypeCache.Refresh (177ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (446ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (226ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (37ms) - ProcessInitializeOnLoadAttributes (164ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3625. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.439200 ms (FindLiveObjects: 0.166500 ms CreateObjectMapping: 0.068300 ms MarkObjects: 2.169700 ms DeleteObjects: 0.033700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.436 seconds -Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.457 seconds -Domain Reload Profiling: 893ms - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (21ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (16ms) - LoadAllAssembliesAndSetupDomain (292ms) - LoadAssemblies (157ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (165ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (458ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (234ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (169ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3628. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.743600 ms (FindLiveObjects: 0.294400 ms CreateObjectMapping: 0.099000 ms MarkObjects: 2.305700 ms DeleteObjects: 0.043300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.497 seconds -Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.754 seconds -Domain Reload Profiling: 1251ms - BeginReloadAssembly (104ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (337ms) - LoadAssemblies (196ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (3ms) - FinalizeReload (755ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (201ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (3ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (38ms) - ProcessInitializeOnLoadAttributes (143ms) - ProcessInitializeOnLoadMethodAttributes (12ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3631. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.152000 ms (FindLiveObjects: 0.173800 ms CreateObjectMapping: 0.077500 ms MarkObjects: 1.861500 ms DeleteObjects: 0.036500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.430 seconds -Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.451 seconds -Domain Reload Profiling: 881ms - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (283ms) - LoadAssemblies (158ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (169ms) - TypeCache.Refresh (166ms) - TypeCache.ScanAssembly (159ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (451ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (42ms) - ProcessInitializeOnLoadAttributes (161ms) - ProcessInitializeOnLoadMethodAttributes (15ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3634. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.561200 ms (FindLiveObjects: 0.238200 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.199000 ms DeleteObjects: 0.037200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.443 seconds -Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.519 seconds -Domain Reload Profiling: 963ms - BeginReloadAssembly (97ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (298ms) - LoadAssemblies (161ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (180ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (169ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (519ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (280ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (204ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3637. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.502600 ms (FindLiveObjects: 0.228700 ms CreateObjectMapping: 0.095700 ms MarkObjects: 2.140900 ms DeleteObjects: 0.036400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.472 seconds -Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.820 seconds -Domain Reload Profiling: 1292ms - BeginReloadAssembly (107ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (312ms) - LoadAssemblies (180ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (176ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (820ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (265ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (191ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3640. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.478600 ms (FindLiveObjects: 0.372500 ms CreateObjectMapping: 0.095800 ms MarkObjects: 1.925800 ms DeleteObjects: 0.083800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.471 seconds -Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.586 seconds -Domain Reload Profiling: 1057ms - BeginReloadAssembly (104ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (315ms) - LoadAssemblies (172ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (187ms) - TypeCache.Refresh (184ms) - TypeCache.ScanAssembly (175ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (586ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (296ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (50ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3643. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 3.003900 ms (FindLiveObjects: 0.333600 ms CreateObjectMapping: 0.133600 ms MarkObjects: 2.499100 ms DeleteObjects: 0.036600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.475 seconds -Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.805 seconds -Domain Reload Profiling: 1280ms - BeginReloadAssembly (98ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (26ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (326ms) - LoadAssemblies (190ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (176ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (805ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (268ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (192ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3646. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.576500 ms (FindLiveObjects: 0.216500 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.235500 ms DeleteObjects: 0.038900 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.442 seconds -Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.540 seconds -Domain Reload Profiling: 983ms - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (292ms) - LoadAssemblies (157ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (177ms) - TypeCache.Refresh (173ms) - TypeCache.ScanAssembly (166ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (541ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (270ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (197ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3649. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.875300 ms (FindLiveObjects: 0.370200 ms CreateObjectMapping: 0.146700 ms MarkObjects: 2.294900 ms DeleteObjects: 0.062400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.684 seconds -Refreshing native plugins compatible for Editor in 2.44 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 1.151 seconds -Domain Reload Profiling: 1836ms - BeginReloadAssembly (138ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (470ms) - LoadAssemblies (277ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (266ms) - TypeCache.Refresh (261ms) - TypeCache.ScanAssembly (250ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (1152ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (370ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (60ms) - ProcessInitializeOnLoadAttributes (272ms) - ProcessInitializeOnLoadMethodAttributes (24ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3652. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 3.557800 ms (FindLiveObjects: 0.341900 ms CreateObjectMapping: 0.159400 ms MarkObjects: 3.004500 ms DeleteObjects: 0.051100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000096 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs + artifactKey: Guid(f970ea55f9f84bf79b05dab180b8c125) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark01.cs using Guid(f970ea55f9f84bf79b05dab180b8c125) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f7034af57c478d1b44866268ea7016a4') in 0.017687 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.483 seconds -Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.588 seconds -Domain Reload Profiling: 1072ms - BeginReloadAssembly (109ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (32ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (314ms) - LoadAssemblies (177ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (175ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (588ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (302ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (218ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3655. -Memory consumption went from 121.7 MB to 121.6 MB. -Total: 2.667800 ms (FindLiveObjects: 0.283900 ms CreateObjectMapping: 0.093300 ms MarkObjects: 2.217500 ms DeleteObjects: 0.072300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs + artifactKey: Guid(9eff140b25d64601aabc6ba32245d099) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/SimpleScript.cs using Guid(9eff140b25d64601aabc6ba32245d099) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c8a5dc8374dc396e065943d8d32045b9') in 0.017016 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.438 seconds -Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.582 seconds -Domain Reload Profiling: 1020ms - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (17ms) - LoadAllAssembliesAndSetupDomain (292ms) - LoadAssemblies (162ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (172ms) - TypeCache.Refresh (169ms) - TypeCache.ScanAssembly (161ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (582ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (294ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (217ms) - ProcessInitializeOnLoadMethodAttributes (17ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (5ms) -Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3658. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.387800 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.132500 ms MarkObjects: 1.986400 ms DeleteObjects: 0.039500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt + artifactKey: Guid(381dcb09d5029d14897e55f98031fca5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Sprites/EmojiOne Attribution.txt using Guid(381dcb09d5029d14897e55f98031fca5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a69091ebf74cd842ee5373b5240c9cee') in 0.024271 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.450 seconds -Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.537 seconds -Domain Reload Profiling: 987ms - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (19ms) - LoadAllAssembliesAndSetupDomain (296ms) - LoadAssemblies (163ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (179ms) - TypeCache.Refresh (175ms) - TypeCache.ScanAssembly (168ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (537ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (287ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (44ms) - ProcessInitializeOnLoadAttributes (211ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3661. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.521300 ms (FindLiveObjects: 0.312200 ms CreateObjectMapping: 0.095700 ms MarkObjects: 2.076100 ms DeleteObjects: 0.036500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc + artifactKey: Guid(d930090c0cd643c7b55f19a38538c162) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Surface.cginc using Guid(d930090c0cd643c7b55f19a38538c162) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ab30e727bd57d8171324bdca15b1d8de') in 0.021565 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.466 seconds -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.556 seconds -Domain Reload Profiling: 1022ms - BeginReloadAssembly (101ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (24ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (314ms) - LoadAssemblies (170ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (188ms) - TypeCache.Refresh (185ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (556ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (290ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (50ms) - ProcessInitializeOnLoadAttributes (211ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3664. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.644700 ms (FindLiveObjects: 0.326200 ms CreateObjectMapping: 0.115900 ms MarkObjects: 2.161600 ms DeleteObjects: 0.040100 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000234 seconds. + path: Assets/TextMesh Pro/Fonts/LiberationSans.ttf + artifactKey: Guid(e3265ab4bf004d28a9537516768c1c75) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Fonts/LiberationSans.ttf using Guid(e3265ab4bf004d28a9537516768c1c75) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f7e93fdd9635e18010138c51c235f277') in 0.020736 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.512 seconds -Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.612 seconds -Domain Reload Profiling: 1124ms - BeginReloadAssembly (109ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (340ms) - LoadAssemblies (184ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (205ms) - TypeCache.Refresh (200ms) - TypeCache.ScanAssembly (192ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (613ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (321ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (19ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3667. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.376000 ms (FindLiveObjects: 0.223500 ms CreateObjectMapping: 0.107000 ms MarkObjects: 2.986800 ms DeleteObjects: 0.057600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Resources/TMP Settings.asset + artifactKey: Guid(3f5b5dff67a942289a9defa416b206f3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/TMP Settings.asset using Guid(3f5b5dff67a942289a9defa416b206f3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '860e34fecb0c7f46ec74b99a30ecbaeb') in 0.064289 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 14 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.515 seconds -Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.621 seconds -Domain Reload Profiling: 1136ms - BeginReloadAssembly (111ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (24ms) - LoadAllAssembliesAndSetupDomain (344ms) - LoadAssemblies (185ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (211ms) - TypeCache.Refresh (207ms) - TypeCache.ScanAssembly (198ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (621ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (324ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (57ms) - ProcessInitializeOnLoadAttributes (236ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3670. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.044300 ms (FindLiveObjects: 0.200100 ms CreateObjectMapping: 0.089500 ms MarkObjects: 2.709800 ms DeleteObjects: 0.043800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8ec333750cf883fdf671e08c462fb9e2') in 0.017201 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.500 seconds -Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.547 seconds -Domain Reload Profiling: 1047ms - BeginReloadAssembly (112ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (20ms) - LoadAllAssembliesAndSetupDomain (330ms) - LoadAssemblies (178ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (202ms) - TypeCache.Refresh (199ms) - TypeCache.ScanAssembly (190ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (548ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (275ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (46ms) - ProcessInitializeOnLoadAttributes (199ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 3.27 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3673. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.898300 ms (FindLiveObjects: 0.328700 ms CreateObjectMapping: 0.108000 ms MarkObjects: 2.411300 ms DeleteObjects: 0.049500 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf + artifactKey: Guid(4beb055f07aaff244873dec698d0363e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Roboto-Bold.ttf using Guid(4beb055f07aaff244873dec698d0363e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '575eed5aece161410ba2d8546e785738') in 0.027252 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc + artifactKey: Guid(3997e2241185407d80309a82f9148466) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Properties.cginc using Guid(3997e2241185407d80309a82f9148466) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9775e68eef60786d2dda0c3d7900fe83') in 0.022699 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.533 seconds -Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.603 seconds -Domain Reload Profiling: 1136ms - BeginReloadAssembly (114ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (360ms) - LoadAssemblies (185ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (225ms) - TypeCache.Refresh (222ms) - TypeCache.ScanAssembly (214ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (603ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (326ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (239ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3676. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.146600 ms (FindLiveObjects: 0.210000 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.808200 ms DeleteObjects: 0.040000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000102 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat + artifactKey: Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Drop Shadow.mat using Guid(e73a58f6e2794ae7b1b7e50b7fb811b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '062f57ac579d48826e7c2669847227de') in 0.034657 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.525 seconds -Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.583 seconds -Domain Reload Profiling: 1108ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (31ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (346ms) - LoadAssemblies (189ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (211ms) - TypeCache.Refresh (207ms) - TypeCache.ScanAssembly (199ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (583ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (325ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 3.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3679. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.616200 ms (FindLiveObjects: 0.251100 ms CreateObjectMapping: 0.100200 ms MarkObjects: 3.218900 ms DeleteObjects: 0.044700 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset + artifactKey: Guid(479a66fa4b094512a62b0a8e553ad95a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Blue to Purple - Vertical.asset using Guid(479a66fa4b094512a62b0a8e553ad95a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '44ab65370c3d77f1875efcb746237ea8') in 0.025995 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.524 seconds -Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.608 seconds -Domain Reload Profiling: 1132ms - BeginReloadAssembly (115ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (349ms) - LoadAssemblies (192ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (210ms) - TypeCache.Refresh (207ms) - TypeCache.ScanAssembly (199ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (608ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (334ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (56ms) - ProcessInitializeOnLoadAttributes (247ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3682. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.151000 ms (FindLiveObjects: 0.213700 ms CreateObjectMapping: 0.090100 ms MarkObjects: 2.797900 ms DeleteObjects: 0.048000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000054 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs + artifactKey: Guid(83680ab1a69f4102ac67d1459fe76e1f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_PhoneNumberValidator.cs using Guid(83680ab1a69f4102ac67d1459fe76e1f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3ef66b3e43f9e42426d62ab8687165c8') in 0.016840 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.750 seconds -Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.812 seconds -Domain Reload Profiling: 1563ms - BeginReloadAssembly (168ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (42ms) - RebuildCommonClasses (40ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (34ms) - LoadAllAssembliesAndSetupDomain (493ms) - LoadAssemblies (291ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (287ms) - TypeCache.Refresh (280ms) - TypeCache.ScanAssembly (270ms) - ScanForSourceGeneratedMonoScriptInfo (2ms) - ResolveRequiredComponents (5ms) - FinalizeReload (813ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (354ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (59ms) - ProcessInitializeOnLoadAttributes (257ms) - ProcessInitializeOnLoadMethodAttributes (24ms) - AfterProcessingInitializeOnLoad (3ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 3.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3685. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.435900 ms (FindLiveObjects: 0.261600 ms CreateObjectMapping: 0.163900 ms MarkObjects: 2.969200 ms DeleteObjects: 0.040300 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat + artifactKey: Guid(f2dcf029949142e28b974630369c8b4e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Drop Shadow.mat using Guid(f2dcf029949142e28b974630369c8b4e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'e24adb97c61b23fbb91dd2ab8de893f7') in 0.026430 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.625 seconds -Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.609 seconds -Domain Reload Profiling: 1234ms - BeginReloadAssembly (147ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (39ms) - RebuildNativeTypeToScriptingClass (15ms) - initialDomainReloadingComplete (32ms) - LoadAllAssembliesAndSetupDomain (393ms) - LoadAssemblies (264ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (210ms) - TypeCache.Refresh (206ms) - TypeCache.ScanAssembly (198ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (609ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (305ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (219ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 2.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3688. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.773200 ms (FindLiveObjects: 0.236700 ms CreateObjectMapping: 0.107400 ms MarkObjects: 2.380400 ms DeleteObjects: 0.047600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs + artifactKey: Guid(6f2c5b59b6874405865e2616e4ec276a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_ExampleScript_01.cs using Guid(6f2c5b59b6874405865e2616e4ec276a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '64e8b33f0346f865d18866f2d24109ee') in 0.022555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.516 seconds -Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.594 seconds -Domain Reload Profiling: 1111ms - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (342ms) - LoadAssemblies (187ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (209ms) - TypeCache.Refresh (205ms) - TypeCache.ScanAssembly (197ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (595ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (325ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (241ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 2.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3691. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.977400 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.092000 ms MarkObjects: 2.615900 ms DeleteObjects: 0.053600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg + artifactKey: Guid(85ac55597b97403c82fc6601a93cf241) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Floor Tiles 1 - diffuse.jpg using Guid(85ac55597b97403c82fc6601a93cf241) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ea8881e5f59f3d0adc5d6b604de7c2ce') in 0.017078 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.530 seconds -Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.609 seconds -Domain Reload Profiling: 1139ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (23ms) - LoadAllAssembliesAndSetupDomain (354ms) - LoadAssemblies (189ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (219ms) - TypeCache.Refresh (214ms) - TypeCache.ScanAssembly (205ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (5ms) - FinalizeReload (609ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (332ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (245ms) - ProcessInitializeOnLoadMethodAttributes (23ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3694. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.882000 ms (FindLiveObjects: 0.339200 ms CreateObjectMapping: 0.115900 ms MarkObjects: 2.383200 ms DeleteObjects: 0.042800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000051 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset + artifactKey: Guid(4c86a3366cd840348ebe8dc438570ee4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Dark to Light Green - Vertical.asset using Guid(4c86a3366cd840348ebe8dc438570ee4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c35cc274416cde9caa28e3a6fb3b0ac0') in 0.025187 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset + artifactKey: Guid(14aa93acbb234d16aaef0e8b46814db6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Sprite Assets/DropCap Numbers.asset using Guid(14aa93acbb234d16aaef0e8b46814db6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd323b6dc51d5eaf360698a8de23b2d30') in 0.036039 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg + artifactKey: Guid(283f897e4925411ebbaa758b4cb13fc2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Floor Cement.jpg using Guid(283f897e4925411ebbaa758b4cb13fc2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '968e1761dea3c6ff3dfb47210c612609') in 0.017476 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset + artifactKey: Guid(5cf8ae092ca54931b443bec5148f3c59) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Light to Dark Green - Vertical.asset using Guid(5cf8ae092ca54931b443bec5148f3c59) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5a4bb38029e37d4246ca2bba25a316a5') in 0.022659 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg + artifactKey: Guid(03d0538de6e24c0f819bfc9ce084dfa9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Vertical (Color).jpg using Guid(03d0538de6e24c0f819bfc9ce084dfa9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b1ecf531ad04935e9e278fefe4353d4c') in 0.015170 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.463 seconds -Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.606 seconds -Domain Reload Profiling: 1070ms - BeginReloadAssembly (103ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (311ms) - LoadAssemblies (172ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (186ms) - TypeCache.Refresh (183ms) - TypeCache.ScanAssembly (176ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (607ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (255ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (43ms) - ProcessInitializeOnLoadAttributes (181ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3697. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.664100 ms (FindLiveObjects: 0.409800 ms CreateObjectMapping: 0.131300 ms MarkObjects: 2.087800 ms DeleteObjects: 0.034200 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset + artifactKey: Guid(125cb55b44b24c4393181402bc6200e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF.asset using Guid(125cb55b44b24c4393181402bc6200e6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bfda40ab20ace18768da167c6d42f621') in 0.030856 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.485 seconds -Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.557 seconds -Domain Reload Profiling: 1043ms - BeginReloadAssembly (107ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (25ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (327ms) - LoadAssemblies (174ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (200ms) - TypeCache.Refresh (197ms) - TypeCache.ScanAssembly (190ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (558ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (304ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (53ms) - ProcessInitializeOnLoadAttributes (222ms) - ProcessInitializeOnLoadMethodAttributes (20ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.029200 ms (FindLiveObjects: 0.251800 ms CreateObjectMapping: 0.137300 ms MarkObjects: 2.583300 ms DeleteObjects: 0.055800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg + artifactKey: Guid(2ce5c55e85304b819a1826ecbc839aa5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Diagonal (Color).jpg using Guid(2ce5c55e85304b819a1826ecbc839aa5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '765274d93e147e200556df0c38b82c18') in 0.013885 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.528 seconds -Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.620 seconds -Domain Reload Profiling: 1148ms - BeginReloadAssembly (120ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (351ms) - LoadAssemblies (186ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (216ms) - TypeCache.Refresh (213ms) - TypeCache.ScanAssembly (203ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (620ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (322ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (55ms) - ProcessInitializeOnLoadAttributes (235ms) - ProcessInitializeOnLoadMethodAttributes (22ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3703. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.682800 ms (FindLiveObjects: 0.256100 ms CreateObjectMapping: 0.145800 ms MarkObjects: 2.239800 ms DeleteObjects: 0.040400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat + artifactKey: Guid(a00013af81304728b2be1f4309ee2433) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Outline.mat using Guid(a00013af81304728b2be1f4309ee2433) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '66f0c5c710928c862ae974623474a9a6') in 0.027071 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.507 seconds -Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.566 seconds -Domain Reload Profiling: 1073ms - BeginReloadAssembly (116ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (30ms) - RebuildCommonClasses (30ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (329ms) - LoadAssemblies (184ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (201ms) - TypeCache.Refresh (197ms) - TypeCache.ScanAssembly (189ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (567ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (299ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (49ms) - ProcessInitializeOnLoadAttributes (218ms) - ProcessInitializeOnLoadMethodAttributes (21ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3706. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.682500 ms (FindLiveObjects: 0.209300 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.347700 ms DeleteObjects: 0.038600 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF.shader + artifactKey: Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF.shader using Guid(68e6db2ebdc24f95958faec2be5558d6) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '39d2ac25e63a989122c2b60ed2c2f606') in 0.018590 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.516 seconds -Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.594 seconds -Domain Reload Profiling: 1109ms - BeginReloadAssembly (113ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (29ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (10ms) - initialDomainReloadingComplete (22ms) - LoadAllAssembliesAndSetupDomain (341ms) - LoadAssemblies (182ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (210ms) - TypeCache.Refresh (206ms) - TypeCache.ScanAssembly (197ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (4ms) - FinalizeReload (594ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (322ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (5ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (51ms) - ProcessInitializeOnLoadAttributes (238ms) - ProcessInitializeOnLoadMethodAttributes (22ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (8ms) -Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3709. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 3.028000 ms (FindLiveObjects: 0.216200 ms CreateObjectMapping: 0.285500 ms MarkObjects: 2.477800 ms DeleteObjects: 0.047400 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/01- Single Line TextMesh Pro.unity + artifactKey: Guid(2ac8cf212df6445e8aebbe3cb832e993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/01- Single Line TextMesh Pro.unity using Guid(2ac8cf212df6445e8aebbe3cb832e993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd7e70971585abb49d06ea5aeda82a217') in 0.017426 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.463 seconds -Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.671 seconds -Domain Reload Profiling: 1134ms - BeginReloadAssembly (100ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (3ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - RebuildCommonClasses (23ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (314ms) - LoadAssemblies (188ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (171ms) - TypeCache.Refresh (168ms) - TypeCache.ScanAssembly (161ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (671ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (270ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (47ms) - ProcessInitializeOnLoadAttributes (196ms) - ProcessInitializeOnLoadMethodAttributes (18ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3712. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.752300 ms (FindLiveObjects: 0.250900 ms CreateObjectMapping: 0.101300 ms MarkObjects: 2.356500 ms DeleteObjects: 0.043000 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold - OFL.txt + artifactKey: Guid(d2cf87a8a7a94aa8b80dff1c807c1178) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Oswald-Bold - OFL.txt using Guid(d2cf87a8a7a94aa8b80dff1c807c1178) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '440ba77067ea85f247b1f6f0d01fe7dd') in 0.020364 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 ======================================================================== -Received Prepare -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.434 seconds -Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. -Native extension for WindowsStandalone target not found -Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.500 seconds -Domain Reload Profiling: 934ms - BeginReloadAssembly (99ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (27ms) - RebuildCommonClasses (22ms) - RebuildNativeTypeToScriptingClass (7ms) - initialDomainReloadingComplete (18ms) - LoadAllAssembliesAndSetupDomain (287ms) - LoadAssemblies (159ms) - RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (172ms) - TypeCache.Refresh (170ms) - TypeCache.ScanAssembly (162ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (500ms) - ReleaseScriptCaches (0ms) - RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (261ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) - RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (188ms) - ProcessInitializeOnLoadMethodAttributes (16ms) - AfterProcessingInitializeOnLoad (2ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3715. -Memory consumption went from 121.7 MB to 121.7 MB. -Total: 2.406000 ms (FindLiveObjects: 0.191700 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.025000 ms DeleteObjects: 0.104800 ms) - -Prepare: number of updated asset objects reloaded= 0 -AssetImportParameters requested are different than current active one (requested -> active): - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs + artifactKey: Guid(91b8ba3d52e041fab2d0e0f169855539) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexColorCycler.cs using Guid(91b8ba3d52e041fab2d0e0f169855539) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ca8d09c940b9746022dbc7c75432f0ff') in 0.015878 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error: operation aborted. errorcode: 995, details: The I/O operation has been aborted because of either a thread exit or an application request. +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker2.log b/LMC/Logs/AssetImportWorker2.log new file mode 100644 index 00000000..8be0039f --- /dev/null +++ b/LMC/Logs/AssetImportWorker2.log @@ -0,0 +1,497 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker2 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker2.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [33752] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 16573003 [EditorId] 16573003 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [33752] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 16573003 [EditorId] 16573003 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 18.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.0f1 (fb119bb0b476) +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' +Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56992 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.005351 seconds. +- Loaded All Assemblies, in 0.351 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.198 seconds +Domain Reload Profiling: 549ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (43ms) + LoadAllAssembliesAndSetupDomain (120ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (117ms) + TypeCache.Refresh (117ms) + TypeCache.ScanAssembly (96ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (1ms) + FinalizeReload (199ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (106ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.159 seconds +Refreshing native plugins compatible for Editor in 4.06 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.491 seconds +Domain Reload Profiling: 1649ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (23ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (34ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (730ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (294ms) + TypeCache.Refresh (278ms) + TypeCache.ScanAssembly (263ms) + ScanForSourceGeneratedMonoScriptInfo (13ms) + ResolveRequiredComponents (3ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (329ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 120.9 MB. +Total: 5.654500 ms (FindLiveObjects: 0.354000 ms CreateObjectMapping: 0.127000 ms MarkObjects: 4.967000 ms DeleteObjects: 0.204400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 559123.914375 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Anton OFL.txt + artifactKey: Guid(73a79399807f4e8388c2cbb5494681ca) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Anton OFL.txt using Guid(73a79399807f4e8388c2cbb5494681ca) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a5059cc5377857524c5fd9c62a8a6a3') in 0.090806 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/Textures/Texture.jpg + artifactKey: Guid(34f6a94ffd906414baab13a5f3d16a2d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/Texture.jpg using Guid(34f6a94ffd906414baab13a5f3d16a2d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '68deb34b55667d2195c546dc58e6ac45') in 0.083672 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/Black.mat + artifactKey: Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Black.mat using Guid(4ec0aa7fd1f42ac4ab0b3019803e3e9a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a7975210cd5d9455b54021e33918a7d') in 0.045178 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs + artifactKey: Guid(ac1eb05af6d391b4eb0f4c070a99f1d0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/DropdownSample.cs using Guid(ac1eb05af6d391b4eb0f4c070a99f1d0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c13ad5928850da95b4ba5c3d3e8a38ba') in 0.016680 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000448 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/Benchmark (Floating Text).unity + artifactKey: Guid(16177da2e3254cee91944756d5f8ddd3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/Benchmark (Floating Text).unity using Guid(16177da2e3254cee91944756d5f8ddd3) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '62e66bcc04f2a9f5d827bae1bb20a074') in 0.018417 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000065 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/12 - Link Example.unity + artifactKey: Guid(9747140c28254be2adc582210dfb89b8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/12 - Link Example.unity using Guid(9747140c28254be2adc582210dfb89b8) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8e4e5d901e9047642e344eeb772e22b4') in 0.014150 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Surface Shader Scene.mat + artifactKey: Guid(aadd5a709a48466c887296bb5b1b8110) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Ground - Surface Shader Scene.mat using Guid(aadd5a709a48466c887296bb5b1b8110) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0b2a2ac26d9a8594fddb1b4ddd72331d') in 0.026838 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/Segmental.ttf + artifactKey: Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Segmental.ttf using Guid(45eed887fa2c4e34985b2f55ca4aef5b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dfe55e125e618c34734a2923e2b860b4') in 0.031376 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/22 - Basic Scripting Example.unity + artifactKey: Guid(6250f98e58fe4abbaada5d84b7ca846d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/22 - Basic Scripting Example.unity using Guid(6250f98e58fe4abbaada5d84b7ca846d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1e35024f090a9c65edcfa6f134632215') in 0.016816 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf + artifactKey: Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Documentation/TextMesh Pro User Guide 2016.pdf using Guid(1b8d251f9af63b746bf2f7ffe00ebb9b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '60ee9b5125afe561984b457a1cf9b6a9') in 0.016387 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Sprite.shader + artifactKey: Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Sprite.shader using Guid(cf81c85f95fe47e1a27f6ae460cf182c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6696b6814e0c36e1b5a2ab3b1c7cda12') in 0.022523 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/02 - Multi-line TextMesh Pro.unity + artifactKey: Guid(251716609f634449bfe8ce75c0ed78fe) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/02 - Multi-line TextMesh Pro.unity using Guid(251716609f634449bfe8ce75c0ed78fe) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '67d3140ad4969f487d3ba33f281863af') in 0.015607 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs + artifactKey: Guid(2d687537154440a3913a9a3c7977978c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/CameraController.cs using Guid(2d687537154440a3913a9a3c7977978c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'efc7ff7f5ae3e6aec00f0cc865821729') in 0.018264 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000310 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader + artifactKey: Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap.shader using Guid(128e987d567d4e2c824d754223b3f3b0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ab8867f0fdc025d23afc6f341822de0f') in 0.025981 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader + artifactKey: Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile.shader using Guid(fe393ace9b354375a9cb14cdbbc28be4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8cb915df5a71ba65195d585e1ed718a3') in 0.019218 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000068 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/24 - Surface Shader Example.unity + artifactKey: Guid(8c4969fd8ba94a68b07cf11f3e7a5137) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/24 - Surface Shader Example.unity using Guid(8c4969fd8ba94a68b07cf11f3e7a5137) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bf42732f6739f6da2fb440badaed87e9') in 0.018117 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/11 - The Style Tag.unity + artifactKey: Guid(84ed36ad77dd4956b2ffe3769f759879) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/11 - The Style Tag.unity using Guid(84ed36ad77dd4956b2ffe3769f759879) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0811178e0c4eb0829a153369c2a3986e') in 0.013555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf + artifactKey: Guid(997a43b767814dd0a7642ec9b78cba41) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Anton.ttf using Guid(997a43b767814dd0a7642ec9b78cba41) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '04e9077c3272cd5e95bf6a02c6e248ff') in 0.029272 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader + artifactKey: Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_Bitmap-Mobile.shader using Guid(1e3b057af24249748ff873be7fafee47) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'de8273f66de80c4da2a924aef610d326') in 0.026640 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/basket.fbx + artifactKey: Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/basket.fbx using Guid(49091d0c0fe8c3041af75ee6403e0b6e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4727f267849fafe09c15cec37ebd4f6f') in 0.067292 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 17 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs + artifactKey: Guid(e4e0d9ccee5f4950be8979268c9014e0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeB.cs using Guid(e4e0d9ccee5f4950be8979268c9014e0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '450b59847324aefc3cf5faf263ebc4e1') in 0.017843 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs + artifactKey: Guid(21256c5b62f346f18640dad779911e20) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextInfoDebugTool.cs using Guid(21256c5b62f346f18640dad779911e20) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '667738199a8e95160df75d614f6903db') in 0.016669 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000062 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg + artifactKey: Guid(f88677df267a41d6be1e7a6133e7d227) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Brushed Metal 3.jpg using Guid(f88677df267a41d6be1e7a6133e7d227) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ddb2c9268ed7c54a4143fe999425c704') in 0.013291 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs + artifactKey: Guid(2ed57967c52645d390a89dcf8f61ba73) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexJitter.cs using Guid(2ed57967c52645d390a89dcf8f61ba73) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c3529bbc6ba310ca06ab5e4cec23004f') in 0.018765 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000081 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat + artifactKey: Guid(8b29aaa3eec7468097ff07adfcf29ac9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Metalic Green.mat using Guid(8b29aaa3eec7468097ff07adfcf29ac9) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '01e3debc2c6b4e2b8a5b7d82f339aa46') in 0.038444 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs + artifactKey: Guid(a4d4c76e63944cba8c7d00f56334b98c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TextMeshProFloatingText.cs using Guid(a4d4c76e63944cba8c7d00f56334b98c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9736229a835a2f137658e192516ed5f7') in 0.017038 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat + artifactKey: Guid(79459efec17a4d00a321bdcc27bbc385) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Outline.mat using Guid(79459efec17a4d00a321bdcc27bbc385) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '18fb2192ade5bcbb06d19afa241fcc2b') in 0.026446 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg + artifactKey: Guid(602cb87b6a29443b8636370ea0751574) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_diffuse.jpg using Guid(602cb87b6a29443b8636370ea0751574) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f28828c7be76f03f40e8fda8b997f6d8') in 0.027451 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset + artifactKey: Guid(dc36b3fdc14f47ebb36fd484a67e268a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Electronic Highway Sign SDF.asset using Guid(dc36b3fdc14f47ebb36fd484a67e268a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c9ca223bbdb5b60f6df844e8e11c44b2') in 0.056357 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset + artifactKey: Guid(c41005c129ba4d66911b75229fd70b45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Sprite Assets/EmojiOne.asset using Guid(c41005c129ba4d66911b75229fd70b45) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b87478f21c08fbcb1872fa4b50393184') in 0.021074 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset + artifactKey: Guid(8a89fa14b10d46a99122fd4f73fca9a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF.asset using Guid(8a89fa14b10d46a99122fd4f73fca9a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'dcf56dc59b8f6550ce2bbb5cfc1b1685') in 0.027054 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs + artifactKey: Guid(53d91f98a2664f5cb9af11de72ac54ec) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/ChatController.cs using Guid(53d91f98a2664f5cb9af11de72ac54ec) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'c1268b1b988ec51b5022e8a0cc714afe') in 0.017470 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat + artifactKey: Guid(b246c4190f4e46ec9352fe15a7b09ce0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Drop Shadow.mat using Guid(b246c4190f4e46ec9352fe15a7b09ce0) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f1fb2a1273d01c0909a1866c8b14f9d5') in 0.032485 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs + artifactKey: Guid(d412675cfb3441efa3bf8dcd9b7624dc) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/SkewTextExample.cs using Guid(d412675cfb3441efa3bf8dcd9b7624dc) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '04d4c1f36f5e261ece94821c5c188247') in 0.017201 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs + artifactKey: Guid(52ec835d14bd486f900952b77698b7eb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexZoom.cs using Guid(52ec835d14bd486f900952b77698b7eb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '98fda35c4784855e8ac8231bd920045f') in 0.016127 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error +AssetImportWorkerClient::OnTransportError - code=2 error=End of file +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker3.log b/LMC/Logs/AssetImportWorker3.log new file mode 100644 index 00000000..725e0f30 --- /dev/null +++ b/LMC/Logs/AssetImportWorker3.log @@ -0,0 +1,479 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker3 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker3.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [40668] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1546222997 [EditorId] 1546222997 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [40668] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 1546222997 [EditorId] 1546222997 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 19.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.0f1 (fb119bb0b476) +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' +Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56332 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.003866 seconds. +- Loaded All Assemblies, in 0.340 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.200 seconds +Domain Reload Profiling: 541ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (117ms) + LoadAssemblies (146ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (115ms) + TypeCache.Refresh (114ms) + TypeCache.ScanAssembly (96ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (201ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (105ms) + ProcessInitializeOnLoadMethodAttributes (36ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.166 seconds +Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.475 seconds +Domain Reload Profiling: 1642ms + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (22ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (920ms) + LoadAssemblies (736ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (5ms) + FinalizeReload (476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.300500 ms (FindLiveObjects: 0.383700 ms CreateObjectMapping: 0.112500 ms MarkObjects: 3.605900 ms DeleteObjects: 0.196100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 559123.910962 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Materials/Small Crate_diffuse.mat + artifactKey: Guid(22262639920f43d6be32430e4e58350d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Materials/Small Crate_diffuse.mat using Guid(22262639920f43d6be32430e4e58350d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'e222f1a6ec21300a6bdb3e5fa80ab504') in 0.174951 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/robot.fbx + artifactKey: Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/robot.fbx using Guid(17da3fd4e0129f5449ca3ef38c7c6467) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1a113f32226d379f8af8f2d56ff373b6') in 0.105644 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 113 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/13 - Soft Hyphenation.unity + artifactKey: Guid(875684baf40f4d008ce806d03e2a81b2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/13 - Soft Hyphenation.unity using Guid(875684baf40f4d008ce806d03e2a81b2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8e410599839909df5a309a1253e7516f') in 0.017106 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/Fonts/Segmental SDF.asset + artifactKey: Guid(122949bc315ef7d48aef6221c5b75666) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Fonts/Segmental SDF.asset using Guid(122949bc315ef7d48aef6221c5b75666) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ba0b2346da1a1c45e267fb141e07e5af') in 0.065231 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs + artifactKey: Guid(e8538afcddc14efbb5d9e94b7ae50197) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark02.cs using Guid(e8538afcddc14efbb5d9e94b7ae50197) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '67a04b68b69179ef3e1bd87d2b1fe764') in 0.018757 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/08 - Improved Text Alignment.unity + artifactKey: Guid(5fe2257128d9401fad0790f581dc8a6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/08 - Improved Text Alignment.unity using Guid(5fe2257128d9401fad0790f581dc8a6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a852a4a511ef0ffd78dfcc327f6f23cc') in 0.014693 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader + artifactKey: Guid(bc1ede39bf3643ee8e493720e4259791) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Mobile Masking.shader using Guid(bc1ede39bf3643ee8e493720e4259791) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '78d01878e0cd5039f8c1981b7a1a7f27') in 0.024424 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/15 - Inline Graphics & Sprites.unity + artifactKey: Guid(e76e6c0f81964cbda3fe0b7d26ed8060) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/15 - Inline Graphics & Sprites.unity using Guid(e76e6c0f81964cbda3fe0b7d26ed8060) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '17ecee77c313f4a2b218097c6c681a73') in 0.018785 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/Textures/Calculadora_Color.png + artifactKey: Guid(b84e322f5e146d64f86a72eae6bdadbb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/Calculadora_Color.png using Guid(b84e322f5e146d64f86a72eae6bdadbb) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ed95e869a1a46f24e8af8dfe3d75307e') in 0.052497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.001731 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/18 - ScrollRect & Masking & Layout.unity + artifactKey: Guid(03f9d74cec8e4b94a29d2dfd177c821b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/18 - ScrollRect & Masking & Layout.unity using Guid(03f9d74cec8e4b94a29d2dfd177c821b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4bc27b11a285d5bea94a2999ede90d2b') in 0.013786 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/25 - Sunny Days Example.unity + artifactKey: Guid(f9b4c22e15cff344ba9fc6542a58dd07) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/25 - Sunny Days Example.unity using Guid(f9b4c22e15cff344ba9fc6542a58dd07) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0f11adefe6e02984fbffd281c213da60') in 0.015434 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000018 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs + artifactKey: Guid(a73109742c8d47ac822895a473300c29) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/Benchmark03.cs using Guid(a73109742c8d47ac822895a473300c29) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5febb8ab00020da137b9edd33baf52aa') in 0.016209 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/Materials/Handle_material.mat + artifactKey: Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Materials/Handle_material.mat using Guid(d82d4cc61b867be49a1eea0d67ce0f11) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'bd140911d077d872400482e3c3947e1d') in 0.033188 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000140 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/10 - Bullets & Numbered List Example.unity + artifactKey: Guid(c3f814e1d12c45568daf3dd9a86a0e61) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/10 - Bullets & Numbered List Example.unity using Guid(c3f814e1d12c45568daf3dd9a86a0e61) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '75fb037540b41a222ef45d03d02f472e') in 0.014667 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset + artifactKey: Guid(69a525efa7e6472eab268f6ea605f06e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Color Gradient Presets/Yellow to Orange - Vertical.asset using Guid(69a525efa7e6472eab268f6ea605f06e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0fffe9d13753f1c56135dc68252af343') in 0.029895 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000080 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg + artifactKey: Guid(6eb184de103d4b3f812b38561065192f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Gradient Horizontal (Color).jpg using Guid(6eb184de103d4b3f812b38561065192f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b6e72e50c352244f8c3fc48b02f64760') in 0.014793 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000209 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat + artifactKey: Guid(f629c6e43dba4bf38cb74d8860150664) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF - Outline.mat using Guid(f629c6e43dba4bf38cb74d8860150664) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2c91eace45e78c9c4a6826ecf3d8a960') in 0.034602 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat + artifactKey: Guid(f4e195ac1e204eff960149d1cb34e18c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Logo.mat using Guid(f4e195ac1e204eff960149d1cb34e18c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7e1c4ee5805936cda73b6ec0eb0436c9') in 0.033636 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs + artifactKey: Guid(a05dcd8be7ec4ccbb35c26219884aa37) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextSelector_B.cs using Guid(a05dcd8be7ec4ccbb35c26219884aa37) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6d07006f0666fd4eb6671e944f45440e') in 0.025504 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd + artifactKey: Guid(10c49fcd9c64421db7c0133e61e55f97) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Circle.psd using Guid(10c49fcd9c64421db7c0133e61e55f97) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b016d417c7e35a9e75fffd4634f575cf') in 0.014356 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000059 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat + artifactKey: Guid(e6b276ec991f467aa14ef1f3cc665993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Roboto-Bold SDF - Surface.mat using Guid(e6b276ec991f467aa14ef1f3cc665993) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '526c5cf544f6b757e750790890d06fe0') in 0.033914 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs + artifactKey: Guid(790744c462254b7ba8038e6ed28b3db2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/WarpTextExample.cs using Guid(790744c462254b7ba8038e6ed28b3db2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ad13fcd05809b7c179f752c5f82a295d') in 0.014512 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd + artifactKey: Guid(2b5e9ae96c5644d8bae932f8b4ca68a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Quad.psd using Guid(2b5e9ae96c5644d8bae932f8b4ca68a2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '6a9b38c0b00ef6f6541bf4a9f3c21bba') in 0.014899 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000049 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset + artifactKey: Guid(2e498d1c8094910479dc3e1b768306a4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF - Fallback.asset using Guid(2e498d1c8094910479dc3e1b768306a4) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '45e0406e72675b08cfc4476559f1e432') in 0.028973 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd + artifactKey: Guid(bb8dfcd263ad4eb383a33d74a720be6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Mask Zig-n-Zag.psd using Guid(bb8dfcd263ad4eb383a33d74a720be6f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd06db11441a9eb424012668a9b3702b8') in 0.013726 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000097 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd + artifactKey: Guid(7631f4eff8f74ed38eb3eb9db17134e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Radial Double.psd using Guid(7631f4eff8f74ed38eb3eb9db17134e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '7782ee2330835ea54731acd2c2273ee6') in 0.014497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg + artifactKey: Guid(17c350171f7a3ca479f830547c66d187) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Sunny Days - Seamless.jpg using Guid(17c350171f7a3ca479f830547c66d187) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '30c01a416a3f0c7221c12bab4094322b') in 0.025459 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png + artifactKey: Guid(c76d18757a194d618355f05f815cb0a1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text UI Screenshot.png using Guid(c76d18757a194d618355f05f815cb0a1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '92695e8dc0596fc40a4d70af728e1ff3') in 0.016119 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000082 seconds. + path: Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt + artifactKey: Guid(6e59c59b81ab47f9b6ec5781fa725d2c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Fonts/LiberationSans - OFL.txt using Guid(6e59c59b81ab47f9b6ec5781fa725d2c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '15c380d37728b2a73508d6cb69950d7a') in 0.014690 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/16 - Linked text overflow mode example.unity + artifactKey: Guid(9442cda25baa4a0bb544c4d095b00caa) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/16 - Linked text overflow mode example.unity using Guid(9442cda25baa4a0bb544c4d095b00caa) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '08ef54e125cb69f5c059b046b6c69d0a') in 0.013555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs + artifactKey: Guid(f7cfa58e417a46ea8889989684c2522e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/VertexShakeA.cs using Guid(f7cfa58e417a46ea8889989684c2522e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2ee56ac750b45379dac83851cd813d0c') in 0.017938 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000016 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/04 - Word Wrapping.unity + artifactKey: Guid(8f7137eacd7042d5b17ef0efe5e744f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/04 - Word Wrapping.unity using Guid(8f7137eacd7042d5b17ef0efe5e744f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '5ada904bfaa914e3c4041d716f580775') in 0.017482 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs + artifactKey: Guid(24b0dc2d1d494adbbec1f4db26b4cf83) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_UiFrameRateCounter.cs using Guid(24b0dc2d1d494adbbec1f4db26b4cf83) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '096c6055272514e114286ca9586f7b6f') in 0.018025 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +Editor requested this worker to shutdown with reason: Scaling down because of idle timeout +TcpMessagingSession - receive error +AssetImportWorkerClient::OnTransportError - code=2 error=End of file +AssetImportWorker is now disconnected from the server +Process exiting +Exiting without the bug reporter. Application will terminate with return code 0 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker4.log b/LMC/Logs/AssetImportWorker4.log new file mode 100644 index 00000000..31625760 --- /dev/null +++ b/LMC/Logs/AssetImportWorker4.log @@ -0,0 +1,5194 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker4 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker4.log +-srvPort +58815 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [36556] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2442853996 [EditorId] 2442853996 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [36556] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 2442853996 [EditorId] 2442853996 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 17.78 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.0f1 (fb119bb0b476) +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' +Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56332 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.005930 seconds. +- Loaded All Assemblies, in 0.341 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.205 seconds +Domain Reload Profiling: 546ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (45ms) + LoadAllAssembliesAndSetupDomain (116ms) + LoadAssemblies (144ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (113ms) + TypeCache.Refresh (112ms) + TypeCache.ScanAssembly (93ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (0ms) + FinalizeReload (206ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (159ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (109ms) + ProcessInitializeOnLoadMethodAttributes (35ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.164 seconds +Refreshing native plugins compatible for Editor in 3.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.481 seconds +Domain Reload Profiling: 1647ms + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (21ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (923ms) + LoadAssemblies (737ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (295ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (259ms) + ScanForSourceGeneratedMonoScriptInfo (15ms) + ResolveRequiredComponents (4ms) + FinalizeReload (483ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (245ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.21 seconds +Refreshing native plugins compatible for Editor in 2.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.0 MB to 121.0 MB. +Total: 4.593400 ms (FindLiveObjects: 0.313500 ms CreateObjectMapping: 0.093000 ms MarkObjects: 4.013000 ms DeleteObjects: 0.172700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 559123.913484 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc + artifactKey: Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro_Mobile.cginc using Guid(c334973cef89a9840b0b0c507e0377ab) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9a9170643d47ced7d25cc05e6a21d620') in 0.090369 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/12a - Text Interactions.unity + artifactKey: Guid(08572ab7713642c8a60789750f0bce5c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/12a - Text Interactions.unity using Guid(08572ab7713642c8a60789750f0bce5c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b2a61a0320a1b17b8a3076060f4feeea') in 0.017798 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000071 seconds. + path: Assets/TextMesh Pro/Shaders/TMPro.cginc + artifactKey: Guid(407bc68d299748449bbf7f48ee690f8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMPro.cginc using Guid(407bc68d299748449bbf7f48ee690f8d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'afc1d9a1fc2ba1490891f0531529e221') in 0.021400 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000088 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 1.prefab + artifactKey: Guid(a6e39ced0ea046bcb636c3f0b2e2a745) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 1.prefab using Guid(a6e39ced0ea046bcb636c3f0b2e2a745) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '476632c40782576e00604304d98aebdf') in 0.143813 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 16 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '92d2cd1f8d41ea6b4e3e82fa56ef7684') in 0.042924 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 39 +======================================================================== +Received Import Request. + Time since last request: 0.000025 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/03 - Line Justification.unity + artifactKey: Guid(21a509e1d3cd49978623fa564adb6f02) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/03 - Line Justification.unity using Guid(21a509e1d3cd49978623fa564adb6f02) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1f03b09643765384273698330d45ac1e') in 0.021362 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Textures/12211_Robot_diffuse.jpg + artifactKey: Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Textures/12211_Robot_diffuse.jpg using Guid(f985869f9aac7af468a65ebd44e4b51a) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd514c3833e6181a621b596996aeae1f9') in 0.058074 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000022 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 2.prefab + artifactKey: Guid(fdad9d952ae84cafb74c63f2e694d042) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Prefabs/TextMeshPro - Prefab 2.prefab using Guid(fdad9d952ae84cafb74c63f2e694d042) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd313e18af12d637dac0c1e3bd4ac847b') in 0.047402 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 16 +======================================================================== +Received Import Request. + Time since last request: 0.000023 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader + artifactKey: Guid(dd89cf5b9246416f84610a006f916af7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF Overlay.shader using Guid(dd89cf5b9246416f84610a006f916af7) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '059a57cf29d257e9fc2fbd66fcbd25a6') in 0.024674 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt + artifactKey: Guid(fade42e8bc714b018fac513c043d323b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/LineBreaking Following Characters.txt using Guid(fade42e8bc714b018fac513c043d323b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '1b5465f1ab2948b080b1761f67522e34') in 0.017280 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.001952 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader + artifactKey: Guid(14eb328de4b8eb245bb7cea29e4ac00b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF SSD.shader using Guid(14eb328de4b8eb245bb7cea29e4ac00b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd009ba0db26453efcb5f2387b07d9bfc') in 0.019684 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf + artifactKey: Guid(5dd49b3eacc540408c98eee0de38e0f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Fonts/Bangers.ttf using Guid(5dd49b3eacc540408c98eee0de38e0f1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '07704328a964d3c555dbae220c323e9a') in 0.032752 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 3 +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/21 - Script Example.unity + artifactKey: Guid(50f52f9274434ecfb34dd87f0836f323) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/21 - Script Example.unity using Guid(50f52f9274434ecfb34dd87f0836f323) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '4b433267d617c1c71b0169edc4dc4de2') in 0.015747 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader + artifactKey: Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Shaders/TMP_SDF-Surface.shader using Guid(f7ada0af4f174f0694ca6a487b8f543d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'a18b57fbe9fbf23879141d7405a897a6') in 0.023589 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000015 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd + artifactKey: Guid(fd09957580ac4326916010f1f260975b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Sprites/DropCap Numbers.psd using Guid(fd09957580ac4326916010f1f260975b) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd92695cd661299477d4769a350e7cda5') in 0.015731 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000084 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset + artifactKey: Guid(0161d805a3764c089bef00bfe00793f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Oswald Bold SDF.asset using Guid(0161d805a3764c089bef00bfe00793f5) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '111a770b8560adf94a5171e7480ecd7d') in 0.043401 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 5 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg + artifactKey: Guid(8878a782f4334ecbbcf683b3ac780966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Small Crate_normal.jpg using Guid(8878a782f4334ecbbcf683b3ac780966) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '560dfb01b8d71e3230c5ee2455884777') in 0.023517 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000019 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png + artifactKey: Guid(4ccf43d26c4748c792174516f4a8fcef) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Text Overflow - Linked Text Image 1.png using Guid(4ccf43d26c4748c792174516f4a8fcef) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '099ed2046edbb6109ffd3b46db2ae649') in 0.017306 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000089 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd + artifactKey: Guid(ed5290d8df18488780e2996b9b882f01) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Textures/Wipe Pattern - Diagonal.psd using Guid(ed5290d8df18488780e2996b9b882f01) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '84fec0661ae4d72c4e05dc05f8904f19') in 0.016118 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs + artifactKey: Guid(d736ce056cf444ca96e424f4d9c42b76) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventCheck.cs using Guid(d736ce056cf444ca96e424f4d9c42b76) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '9cd5c553d471c3777e3176516d947191') in 0.025542 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat + artifactKey: Guid(d75b8f41e959450c84ac6e967084d3e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Bangers SDF Glow.mat using Guid(d75b8f41e959450c84ac6e967084d3e1) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'f67607841bcb9d6cfcd15aa9247775d8') in 0.048084 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000017 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png + artifactKey: Guid(a0fc465d6cf04254a2938578735e2383) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Sprites/Default Sprites.png using Guid(a0fc465d6cf04254a2938578735e2383) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '525472836782cbc15b542793f09214aa') in 0.035785 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset + artifactKey: Guid(8f586378b4e144a9851e7b34d9b748ee) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Resources/Fonts & Materials/LiberationSans SDF.asset using Guid(8f586378b4e144a9851e7b34d9b748ee) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '60d200d2fa6413a7fa190bc4a6bbf95d') in 0.043485 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 8 +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat + artifactKey: Guid(749b9069dc4742c5bfa5c74644049926) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/Anton SDF - Drop Shadow.mat using Guid(749b9069dc4742c5bfa5c74644049926) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'ef25b79b19ae0f2cd4223541df16a10e') in 0.024959 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000020 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat + artifactKey: Guid(9ad269c99dcf42b7aedefd83dd5a7b9d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Resources/Fonts & Materials/LiberationSans SDF - Overlay.mat using Guid(9ad269c99dcf42b7aedefd83dd5a7b9d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'b6cb86ed7e8e6d656177aa578f0da5b9') in 0.030454 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 2 +======================================================================== +Received Import Request. + Time since last request: 0.000021 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/19 - Masking Texture & Soft Mask.unity + artifactKey: Guid(9abcd5bd764646568a6ea70d00f9264c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/19 - Masking Texture & Soft Mask.unity using Guid(9abcd5bd764646568a6ea70d00f9264c) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '0d27d00f79a93225642e548be1d4b316') in 0.014259 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/26 - Dropdown Placeholder Example.unity + artifactKey: Guid(0851605490a599b46b6ac5cb681d93ea) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/26 - Dropdown Placeholder Example.unity using Guid(0851605490a599b46b6ac5cb681d93ea) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: 'd1fddf35999a6442999f19b1c5678a7a') in 0.021848 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000024 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scenes/09 - Margin Tag Example.unity + artifactKey: Guid(349f38d3606449708c7340d26740e1e2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scenes/09 - Margin Tag Example.unity using Guid(349f38d3606449708c7340d26740e1e2) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '03068dca731976751e28d364734116c9') in 0.016343 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs + artifactKey: Guid(1312ae25639a4bae8e25ae223209cc50) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/TextMesh Pro/Examples & Extras/Scripts/TMP_TextEventHandler.cs using Guid(1312ae25639a4bae8e25ae223209cc50) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '70cffc812fbd4b2635a7ab07de3f1358') in 0.019705 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '3863057b98510a69ed61c0191dd9e789') in 0.017907 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 4.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 0 Unused Serialized files (Serialized files now loaded: 0) +Unloading 1 unused Assets / (0.8 KB). Loaded Objects now: 3581. +Memory consumption went from 69.5 MB to 69.5 MB. +Total: 4.070900 ms (FindLiveObjects: 0.264900 ms CreateObjectMapping: 0.098500 ms MarkObjects: 3.689600 ms DeleteObjects: 0.017200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 137.118265 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '105290057e5b569bfee13e59309ead61') in 0.018555 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 27.579852 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '8ddf96a65da59805b0259e57b2606439') in 0.010859 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 9.554920 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '2add8bd5cceaad4fff9504de3e6f31c0') in 0.013975 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 15.733113 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '46e0a1686ceeb23969d1d509364bf735') in 0.015723 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Import Request. + Time since last request: 6.661158 seconds. + path: Assets/DoorOpen.cs + artifactKey: Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) +Start importing Assets/DoorOpen.cs using Guid(ed4044aee80d39a4fa934c51059b8e5d) Importer(2089858483,0ecaa5967403d082aa24f35e1b516d23) Generated GUIDs only implemented for interfaces! + -> (artifact id: '784bf3bacaa1742718276e142c78d10e') in 0.008591 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 1 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.498 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.763 seconds +Domain Reload Profiling: 1261ms + BeginReloadAssembly (125ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (203ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (764ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3584. +Memory consumption went from 116.9 MB to 116.9 MB. +Total: 2.267200 ms (FindLiveObjects: 0.180600 ms CreateObjectMapping: 0.080100 ms MarkObjects: 1.964600 ms DeleteObjects: 0.040800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.494 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.505 seconds +Domain Reload Profiling: 999ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (206ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (505ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3587. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.541600 ms (FindLiveObjects: 0.180900 ms CreateObjectMapping: 0.074200 ms MarkObjects: 2.251200 ms DeleteObjects: 0.034700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.84 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 931ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (493ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3590. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.947700 ms (FindLiveObjects: 0.212900 ms CreateObjectMapping: 0.075900 ms MarkObjects: 2.619500 ms DeleteObjects: 0.038600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.667 seconds +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.737 seconds +Domain Reload Profiling: 1404ms + BeginReloadAssembly (128ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (467ms) + LoadAssemblies (261ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (261ms) + TypeCache.ScanAssembly (252ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (737ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (232ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3593. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.725000 ms (FindLiveObjects: 0.351200 ms CreateObjectMapping: 0.132300 ms MarkObjects: 3.188000 ms DeleteObjects: 0.051900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.671 seconds +Refreshing native plugins compatible for Editor in 2.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.710 seconds +Domain Reload Profiling: 1381ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (272ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (242ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (710ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3596. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.909400 ms (FindLiveObjects: 0.175400 ms CreateObjectMapping: 0.076800 ms MarkObjects: 2.604500 ms DeleteObjects: 0.051700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.729 seconds +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.294 seconds +Domain Reload Profiling: 2024ms + BeginReloadAssembly (142ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (514ms) + LoadAssemblies (292ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (284ms) + TypeCache.ScanAssembly (273ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1295ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (403ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (300ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3599. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 5.177300 ms (FindLiveObjects: 0.257700 ms CreateObjectMapping: 0.075600 ms MarkObjects: 4.803000 ms DeleteObjects: 0.039800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.617 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.527 seconds +Domain Reload Profiling: 1144ms + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (370ms) + LoadAssemblies (240ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (199ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (527ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3602. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.571200 ms (FindLiveObjects: 0.199100 ms CreateObjectMapping: 0.078300 ms MarkObjects: 2.254900 ms DeleteObjects: 0.037800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.573 seconds +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.810 seconds +Domain Reload Profiling: 1383ms + BeginReloadAssembly (123ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (399ms) + LoadAssemblies (266ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (811ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (36ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3605. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.895000 ms (FindLiveObjects: 0.181500 ms CreateObjectMapping: 0.106400 ms MarkObjects: 3.555100 ms DeleteObjects: 0.051000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.490 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 968ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3608. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.948800 ms (FindLiveObjects: 0.311600 ms CreateObjectMapping: 0.145600 ms MarkObjects: 3.411100 ms DeleteObjects: 0.079300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.685 seconds +Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.767 seconds +Domain Reload Profiling: 1451ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (465ms) + LoadAssemblies (278ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (261ms) + TypeCache.Refresh (254ms) + TypeCache.ScanAssembly (245ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (767ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (313ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 3.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3611. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 4.053300 ms (FindLiveObjects: 0.313900 ms CreateObjectMapping: 0.096900 ms MarkObjects: 3.600800 ms DeleteObjects: 0.040400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 3.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1515ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (456ms) + LoadAssemblies (255ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (272ms) + TypeCache.Refresh (264ms) + TypeCache.ScanAssembly (255ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (842ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (363ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (67ms) + ProcessInitializeOnLoadAttributes (255ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3614. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.539300 ms (FindLiveObjects: 0.244300 ms CreateObjectMapping: 0.089700 ms MarkObjects: 3.162400 ms DeleteObjects: 0.041400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.432 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.494 seconds +Domain Reload Profiling: 926ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (21ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (494ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3617. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.426600 ms (FindLiveObjects: 0.284100 ms CreateObjectMapping: 0.144300 ms MarkObjects: 1.957900 ms DeleteObjects: 0.039400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.449 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3620. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.396300 ms (FindLiveObjects: 0.226300 ms CreateObjectMapping: 0.097700 ms MarkObjects: 2.032300 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.696 seconds +Domain Reload Profiling: 1180ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (207ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (696ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (192ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (34ms) + ProcessInitializeOnLoadAttributes (139ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3623. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.464700 ms (FindLiveObjects: 0.171600 ms CreateObjectMapping: 0.061400 ms MarkObjects: 2.197300 ms DeleteObjects: 0.033700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.434 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.458 seconds +Domain Reload Profiling: 892ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (458ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3626. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.016900 ms (FindLiveObjects: 0.264900 ms CreateObjectMapping: 0.113400 ms MarkObjects: 2.574500 ms DeleteObjects: 0.063200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.467 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (186ms) + TypeCache.ScanAssembly (178ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3629. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.441400 ms (FindLiveObjects: 0.237800 ms CreateObjectMapping: 0.101300 ms MarkObjects: 2.064100 ms DeleteObjects: 0.037300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.683 seconds +Domain Reload Profiling: 1172ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (170ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (684ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (154ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3632. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.975400 ms (FindLiveObjects: 0.253500 ms CreateObjectMapping: 0.087100 ms MarkObjects: 2.567600 ms DeleteObjects: 0.066100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.461 seconds +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.460 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (306ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (460ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3635. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.104200 ms (FindLiveObjects: 0.188400 ms CreateObjectMapping: 0.071500 ms MarkObjects: 1.803100 ms DeleteObjects: 0.040100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.449 seconds +Domain Reload Profiling: 896ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (449ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3638. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.885200 ms (FindLiveObjects: 0.315200 ms CreateObjectMapping: 0.097600 ms MarkObjects: 2.427800 ms DeleteObjects: 0.043200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.466 seconds +Domain Reload Profiling: 905ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (466ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3641. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.408000 ms (FindLiveObjects: 0.222700 ms CreateObjectMapping: 0.093500 ms MarkObjects: 2.049000 ms DeleteObjects: 0.041800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.449 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.427 seconds +Domain Reload Profiling: 875ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (427ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (206ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (146ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3644. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.878200 ms (FindLiveObjects: 0.179700 ms CreateObjectMapping: 0.066300 ms MarkObjects: 2.599400 ms DeleteObjects: 0.031800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 917ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3647. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.286700 ms (FindLiveObjects: 0.202800 ms CreateObjectMapping: 0.086400 ms MarkObjects: 1.955000 ms DeleteObjects: 0.041800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.689 seconds +Refreshing native plugins compatible for Editor in 3.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.791 seconds +Domain Reload Profiling: 1480ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (470ms) + LoadAssemblies (277ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (264ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (791ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (330ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (235ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3650. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.259600 ms (FindLiveObjects: 0.250600 ms CreateObjectMapping: 0.081100 ms MarkObjects: 2.849500 ms DeleteObjects: 0.040700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.451 seconds +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.483 seconds +Domain Reload Profiling: 934ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (483ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3653. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.500400 ms (FindLiveObjects: 0.250800 ms CreateObjectMapping: 0.101200 ms MarkObjects: 2.111600 ms DeleteObjects: 0.036000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.702 seconds +Refreshing native plugins compatible for Editor in 3.00 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.800 seconds +Domain Reload Profiling: 1502ms + BeginReloadAssembly (141ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (488ms) + LoadAssemblies (285ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (801ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (274ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3656. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.078100 ms (FindLiveObjects: 0.270200 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.676100 ms DeleteObjects: 0.046500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.485 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.795 seconds +Domain Reload Profiling: 1280ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (333ms) + LoadAssemblies (200ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (795ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3659. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.515700 ms (FindLiveObjects: 0.230600 ms CreateObjectMapping: 0.083400 ms MarkObjects: 2.154300 ms DeleteObjects: 0.046500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.733 seconds +Refreshing native plugins compatible for Editor in 1.94 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.778 seconds +Domain Reload Profiling: 1511ms + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (38ms) + LoadAllAssembliesAndSetupDomain (486ms) + LoadAssemblies (286ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (263ms) + TypeCache.ScanAssembly (251ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (778ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (318ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (229ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 3.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3662. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.139600 ms (FindLiveObjects: 0.244700 ms CreateObjectMapping: 0.089900 ms MarkObjects: 2.767800 ms DeleteObjects: 0.036300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.631 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.504 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (147ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (410ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (222ms) + TypeCache.Refresh (219ms) + TypeCache.ScanAssembly (212ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (504ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3665. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.850500 ms (FindLiveObjects: 0.278300 ms CreateObjectMapping: 0.139200 ms MarkObjects: 2.388600 ms DeleteObjects: 0.043600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.472 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.688 seconds +Domain Reload Profiling: 1160ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (689ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (211ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3668. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.271600 ms (FindLiveObjects: 0.214600 ms CreateObjectMapping: 0.076300 ms MarkObjects: 1.941100 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.470 seconds +Domain Reload Profiling: 908ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (290ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (470ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3671. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.961400 ms (FindLiveObjects: 0.401500 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.415700 ms DeleteObjects: 0.048200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.719 seconds +Refreshing native plugins compatible for Editor in 3.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.147 seconds +Domain Reload Profiling: 1866ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (488ms) + LoadAssemblies (297ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (249ms) + TypeCache.ScanAssembly (238ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1147ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (344ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3674. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 8.765600 ms (FindLiveObjects: 0.254000 ms CreateObjectMapping: 0.081400 ms MarkObjects: 8.384400 ms DeleteObjects: 0.044100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.641 seconds +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 1149ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (405ms) + LoadAssemblies (267ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (212ms) + TypeCache.Refresh (208ms) + TypeCache.ScanAssembly (200ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3677. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.339600 ms (FindLiveObjects: 0.185400 ms CreateObjectMapping: 0.079100 ms MarkObjects: 2.041600 ms DeleteObjects: 0.032800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.705 seconds +Refreshing native plugins compatible for Editor in 2.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.042 seconds +Domain Reload Profiling: 1747ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (487ms) + LoadAssemblies (297ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (259ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (241ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (1043ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (331ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (246ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 4.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3680. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.055400 ms (FindLiveObjects: 0.260800 ms CreateObjectMapping: 0.088000 ms MarkObjects: 2.658100 ms DeleteObjects: 0.047600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.683 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 1175ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (476ms) + LoadAssemblies (276ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (275ms) + TypeCache.Refresh (270ms) + TypeCache.ScanAssembly (260ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (492ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3683. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.504300 ms (FindLiveObjects: 0.397100 ms CreateObjectMapping: 0.083000 ms MarkObjects: 1.990500 ms DeleteObjects: 0.032700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.450 seconds +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.435 seconds +Domain Reload Profiling: 885ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (435ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (214ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3686. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.886700 ms (FindLiveObjects: 0.271800 ms CreateObjectMapping: 0.095600 ms MarkObjects: 3.405200 ms DeleteObjects: 0.111800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.435 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 930ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (271ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (200ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3689. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.517800 ms (FindLiveObjects: 0.319200 ms CreateObjectMapping: 0.085400 ms MarkObjects: 2.072900 ms DeleteObjects: 0.039600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.489 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.606 seconds +Domain Reload Profiling: 1095ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (313ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (607ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (227ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3692. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.306800 ms (FindLiveObjects: 0.202600 ms CreateObjectMapping: 0.090200 ms MarkObjects: 1.975800 ms DeleteObjects: 0.037600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.435 seconds +Domain Reload Profiling: 881ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (435ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (215ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (152ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3695. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.585900 ms (FindLiveObjects: 0.372500 ms CreateObjectMapping: 0.117400 ms MarkObjects: 2.056000 ms DeleteObjects: 0.038800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.693 seconds +Refreshing native plugins compatible for Editor in 2.07 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.778 seconds +Domain Reload Profiling: 1471ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (483ms) + LoadAssemblies (309ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (250ms) + TypeCache.Refresh (243ms) + TypeCache.ScanAssembly (234ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (779ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (328ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (241ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3698. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.285500 ms (FindLiveObjects: 0.255500 ms CreateObjectMapping: 0.086000 ms MarkObjects: 2.900800 ms DeleteObjects: 0.042100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.673 seconds +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.690 seconds +Domain Reload Profiling: 1364ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (465ms) + LoadAssemblies (268ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (259ms) + TypeCache.Refresh (254ms) + TypeCache.ScanAssembly (244ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (691ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3701. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.523300 ms (FindLiveObjects: 0.323100 ms CreateObjectMapping: 0.127400 ms MarkObjects: 2.038100 ms DeleteObjects: 0.033700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.720 seconds +Refreshing native plugins compatible for Editor in 2.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.793 seconds +Domain Reload Profiling: 1514ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (510ms) + LoadAssemblies (285ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (290ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (794ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (339ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (240ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3704. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 3.402500 ms (FindLiveObjects: 0.267800 ms CreateObjectMapping: 0.093200 ms MarkObjects: 2.991800 ms DeleteObjects: 0.048900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.489 seconds +Domain Reload Profiling: 936ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (490ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3707. +Memory consumption went from 117.3 MB to 117.2 MB. +Total: 2.641800 ms (FindLiveObjects: 0.230700 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.286900 ms DeleteObjects: 0.038300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 2017.971530 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38e166982dc4a7741f82869fa7e8cc76') in 0.217469 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Import Request. + Time since last request: 32.856395 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6009e01b10aea21001927cedd98933d') in 0.052763 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 62 +======================================================================== +Received Import Request. + Time since last request: 11.312386 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77750f1d7a6bbe0909377fea1d52aa64') in 0.037497 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 62 +======================================================================== +Received Import Request. + Time since last request: 5.910682 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da9f119376b9066d76eb7a63840e1216') in 0.038299 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.715 seconds +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.766 seconds +Domain Reload Profiling: 1481ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (496ms) + LoadAssemblies (287ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (257ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (766ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3718. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.515000 ms (FindLiveObjects: 0.203100 ms CreateObjectMapping: 0.082400 ms MarkObjects: 2.194300 ms DeleteObjects: 0.034300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 43.659355 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '169949e460a79b6019e0d3c63eb2b791') in 0.192322 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.471 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 957ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (248ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3721. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.344400 ms (FindLiveObjects: 0.242600 ms CreateObjectMapping: 0.076600 ms MarkObjects: 1.991000 ms DeleteObjects: 0.033400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.479 seconds +Domain Reload Profiling: 927ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (480ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3724. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.843500 ms (FindLiveObjects: 0.362500 ms CreateObjectMapping: 0.102600 ms MarkObjects: 2.334300 ms DeleteObjects: 0.043100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.738 seconds +Refreshing native plugins compatible for Editor in 2.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.154 seconds +Domain Reload Profiling: 1893ms + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (44ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (509ms) + LoadAssemblies (299ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (285ms) + TypeCache.Refresh (279ms) + TypeCache.ScanAssembly (269ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1155ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (254ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3727. +Memory consumption went from 121.7 MB to 121.7 MB. +Total: 2.600400 ms (FindLiveObjects: 0.236500 ms CreateObjectMapping: 0.098300 ms MarkObjects: 2.227000 ms DeleteObjects: 0.037900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 135.628575 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec996013f4e1513dce3b8de4cc507807') in 0.187760 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 61 +======================================================================== +Received Import Request. + Time since last request: 3.788439 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8c14b0616118fce5ec98d0f1bfa5b78') in 0.019613 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.500 seconds +Domain Reload Profiling: 939ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (500ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.237800 ms (FindLiveObjects: 0.187100 ms CreateObjectMapping: 0.081000 ms MarkObjects: 1.932900 ms DeleteObjects: 0.035900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.440 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 918ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.481300 ms (FindLiveObjects: 0.203900 ms CreateObjectMapping: 0.078600 ms MarkObjects: 2.105700 ms DeleteObjects: 0.092000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.475 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.525 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (525ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3736. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.743400 ms (FindLiveObjects: 0.211500 ms CreateObjectMapping: 0.073800 ms MarkObjects: 2.413500 ms DeleteObjects: 0.043700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 975ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (180ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3739. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.409800 ms (FindLiveObjects: 0.176800 ms CreateObjectMapping: 0.069800 ms MarkObjects: 2.126600 ms DeleteObjects: 0.035800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.452 seconds +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 947ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (16ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 3.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3742. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.823000 ms (FindLiveObjects: 0.303200 ms CreateObjectMapping: 0.112200 ms MarkObjects: 2.360600 ms DeleteObjects: 0.045800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.747 seconds +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.829 seconds +Domain Reload Profiling: 1576ms + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (38ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (284ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (311ms) + TypeCache.Refresh (301ms) + TypeCache.ScanAssembly (289ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (7ms) + FinalizeReload (830ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3745. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.396400 ms (FindLiveObjects: 0.270000 ms CreateObjectMapping: 0.094100 ms MarkObjects: 2.991300 ms DeleteObjects: 0.039700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.751 seconds +Refreshing native plugins compatible for Editor in 2.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.859 seconds +Domain Reload Profiling: 1610ms + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (37ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (514ms) + LoadAssemblies (288ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (294ms) + TypeCache.ScanAssembly (284ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (860ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3748. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.809300 ms (FindLiveObjects: 0.290900 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.390000 ms DeleteObjects: 0.042900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.462 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.515 seconds +Domain Reload Profiling: 978ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (192ms) + TypeCache.Refresh (188ms) + TypeCache.ScanAssembly (180ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (516ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.311100 ms (FindLiveObjects: 0.185100 ms CreateObjectMapping: 0.074000 ms MarkObjects: 2.014600 ms DeleteObjects: 0.036300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.480 seconds +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.465 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (320ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (188ms) + TypeCache.ScanAssembly (179ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (466ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (157ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.602500 ms (FindLiveObjects: 0.252900 ms CreateObjectMapping: 0.164800 ms MarkObjects: 2.144600 ms DeleteObjects: 0.039100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.544 seconds +Domain Reload Profiling: 1028ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (185ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (188ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (544ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (274ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.523200 ms (FindLiveObjects: 0.205900 ms CreateObjectMapping: 0.085300 ms MarkObjects: 2.171400 ms DeleteObjects: 0.059500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.707 seconds +Refreshing native plugins compatible for Editor in 3.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1548ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (481ms) + LoadAssemblies (266ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (291ms) + TypeCache.Refresh (283ms) + TypeCache.ScanAssembly (273ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (842ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (334ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (247ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.026800 ms (FindLiveObjects: 0.261100 ms CreateObjectMapping: 0.126500 ms MarkObjects: 2.598400 ms DeleteObjects: 0.039300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.555 seconds +Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.593 seconds +Domain Reload Profiling: 1148ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (387ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (253ms) + TypeCache.Refresh (249ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (593ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3763. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.889900 ms (FindLiveObjects: 0.233700 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.512000 ms DeleteObjects: 0.055600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.687 seconds +Refreshing native plugins compatible for Editor in 2.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.759 seconds +Domain Reload Profiling: 1447ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (462ms) + LoadAssemblies (273ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (256ms) + TypeCache.ScanAssembly (246ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (760ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (327ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 3.184900 ms (FindLiveObjects: 0.337800 ms CreateObjectMapping: 0.089200 ms MarkObjects: 2.712400 ms DeleteObjects: 0.044200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.679 seconds +Refreshing native plugins compatible for Editor in 2.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.647 seconds +Domain Reload Profiling: 1326ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (456ms) + LoadAssemblies (255ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (277ms) + TypeCache.Refresh (271ms) + TypeCache.ScanAssembly (260ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (647ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3769. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.598300 ms (FindLiveObjects: 0.203700 ms CreateObjectMapping: 0.082400 ms MarkObjects: 2.272500 ms DeleteObjects: 0.038600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 395.550918 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f67693143a84c56694e48d1eaa02748') in 0.096859 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Import Request. + Time since last request: 6.929757 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8de46de334b324bdf3ec9d29539032d8') in 0.037983 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.450 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.503 seconds +Domain Reload Profiling: 953ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (504ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.526700 ms (FindLiveObjects: 0.214900 ms CreateObjectMapping: 0.086900 ms MarkObjects: 2.181400 ms DeleteObjects: 0.042600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.541 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.603 seconds +Domain Reload Profiling: 1144ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (369ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (230ms) + TypeCache.Refresh (224ms) + TypeCache.ScanAssembly (214ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (603ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (285ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (205ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.81 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. +Memory consumption went from 121.8 MB to 121.7 MB. +Total: 2.955400 ms (FindLiveObjects: 0.344100 ms CreateObjectMapping: 0.116100 ms MarkObjects: 2.411400 ms DeleteObjects: 0.082500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 60.147909 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7127e2871e1857cf7103ccba0a38e084') in 0.188622 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Import Request. + Time since last request: 5.762067 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e32ad9a8da142713b895805f955cdf37') in 0.112698 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.444 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.447 seconds +Domain Reload Profiling: 891ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (175ms) + TypeCache.ScanAssembly (167ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (447ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.836100 ms (FindLiveObjects: 0.409100 ms CreateObjectMapping: 0.084400 ms MarkObjects: 2.301700 ms DeleteObjects: 0.039600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 124.513951 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c95251c780486e3f634d4ef172e3727') in 0.101860 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.597 seconds +Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.636 seconds +Domain Reload Profiling: 1233ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (25ms) + LoadAllAssembliesAndSetupDomain (411ms) + LoadAssemblies (214ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (256ms) + TypeCache.Refresh (250ms) + TypeCache.ScanAssembly (240ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (636ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (325ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (70ms) + ProcessInitializeOnLoadAttributes (216ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3781. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 3.616600 ms (FindLiveObjects: 0.323100 ms CreateObjectMapping: 0.130000 ms MarkObjects: 3.081400 ms DeleteObjects: 0.079900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 6.701673 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd25fa244fdebb950f4b934bd198ab3f') in 0.105368 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.546 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.566 seconds +Domain Reload Profiling: 1113ms + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (371ms) + LoadAssemblies (210ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (215ms) + TypeCache.Refresh (211ms) + TypeCache.ScanAssembly (202ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (567ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (272ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3784. +Memory consumption went from 121.5 MB to 121.5 MB. +Total: 2.839800 ms (FindLiveObjects: 0.287600 ms CreateObjectMapping: 0.255300 ms MarkObjects: 2.249900 ms DeleteObjects: 0.045900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.520 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.538 seconds +Domain Reload Profiling: 1058ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (192ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (205ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (538ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3787. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.877700 ms (FindLiveObjects: 0.214800 ms CreateObjectMapping: 0.083800 ms MarkObjects: 2.537700 ms DeleteObjects: 0.040500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.658 seconds +Refreshing native plugins compatible for Editor in 3.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.758 seconds +Domain Reload Profiling: 1416ms + BeginReloadAssembly (136ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (447ms) + LoadAssemblies (241ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (274ms) + TypeCache.Refresh (267ms) + TypeCache.ScanAssembly (256ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (759ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (343ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (248ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3790. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 3.083800 ms (FindLiveObjects: 0.322800 ms CreateObjectMapping: 0.093400 ms MarkObjects: 2.620200 ms DeleteObjects: 0.046000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.633 seconds +Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.540 seconds +Domain Reload Profiling: 1173ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (400ms) + LoadAssemblies (239ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (223ms) + TypeCache.Refresh (218ms) + TypeCache.ScanAssembly (210ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (540ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (293ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3793. +Memory consumption went from 121.8 MB to 121.8 MB. +Total: 2.755700 ms (FindLiveObjects: 0.212200 ms CreateObjectMapping: 0.083200 ms MarkObjects: 2.420500 ms DeleteObjects: 0.038800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 54.264974 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42ed4aa7c70db6617870c9fbc7f8397a') in 0.096840 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.513 seconds +Refreshing native plugins compatible for Editor in 7.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.620 seconds +Domain Reload Profiling: 1134ms + BeginReloadAssembly (116ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (336ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (621ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (322ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (238ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3796. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 4.134400 ms (FindLiveObjects: 0.395100 ms CreateObjectMapping: 0.137300 ms MarkObjects: 3.540300 ms DeleteObjects: 0.060600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 7.243425 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e36d092bababd6343c2e1d19821ebbee') in 0.088881 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 3.13 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.492 seconds +Domain Reload Profiling: 975ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (182ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (492ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3799. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 2.915400 ms (FindLiveObjects: 0.361700 ms CreateObjectMapping: 0.110000 ms MarkObjects: 2.400100 ms DeleteObjects: 0.042600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 57.031704 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e963955dfa8cc5d4c5ac906fea34e3e') in 0.191467 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.723 seconds +Refreshing native plugins compatible for Editor in 8.09 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.867 seconds +Domain Reload Profiling: 1590ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (489ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (299ms) + TypeCache.Refresh (290ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (867ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (401ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (68ms) + ProcessInitializeOnLoadAttributes (292ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3802. +Memory consumption went from 121.6 MB to 121.5 MB. +Total: 3.841000 ms (FindLiveObjects: 0.345000 ms CreateObjectMapping: 0.141400 ms MarkObjects: 3.293900 ms DeleteObjects: 0.059100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:SearchIndexIgnoredProperties: e643bd26f0fe6173181afceb89e7c659 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4.236957 seconds. + path: Assets/A.prefab + artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c327fba04c6225b53c3e90ec1761afdc') in 0.154760 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 60 diff --git a/LMC/UserSettings/Layouts/default-2022.dwlt b/LMC/UserSettings/Layouts/default-2022.dwlt index 329e41c2..4cef3701 100644 --- a/LMC/UserSettings/Layouts/default-2022.dwlt +++ b/LMC/UserSettings/Layouts/default-2022.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 2048 height: 1060.8 m_ShowMode: 4 - m_Title: Scene + m_Title: Hierarchy m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 0 - controlID: 41 + controlID: 40 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1562.4 + width: 1549.6 height: 1010.80005 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 42 + controlID: 41 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,12 +164,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1562.4 + width: 1549.6 height: 598.4 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 43 + controlID: 42 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,10 +187,10 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 380 + width: 377.6 height: 598.4 - m_MinSize: {x: 201, y: 221} - m_MaxSize: {x: 4001, y: 4021} + m_MinSize: {x: 200, y: 200} + m_MaxSize: {x: 4000, y: 4000} m_ActualView: {fileID: 13} m_Panes: - {fileID: 13} @@ -211,9 +211,9 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 380 + x: 377.6 y: 0 - width: 1182.4 + width: 1172 height: 598.4 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} @@ -240,7 +240,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 598.4 - width: 1562.4 + width: 1549.6 height: 412.40002 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} @@ -265,9 +265,9 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1562.4 + x: 1549.6 y: 0 - width: 485.59998 + width: 498.40002 height: 1010.80005 m_MinSize: {x: 275, y: 50} m_MaxSize: {x: 4000, y: 4000} @@ -298,7 +298,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 672 - width: 1561.4 + width: 1548.6 height: 391.40002 m_SerializedDataModeController: m_DataMode: 0 @@ -332,7 +332,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 73.6 - width: 379 + width: 376.6 height: 577.4 m_SerializedDataModeController: m_DataMode: 0 @@ -347,23 +347,23 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: fe590000 - m_LastClickedID: 23038 - m_ExpandedIDs: 541cffff8035ffffbc93ffffc8e6ffffdae6ffffe4e6ffff2cfbffffd0590000325a0000b45a0000325b0000 + m_SelectedIDs: + m_LastClickedID: 0 + m_ExpandedIDs: b6e6ffffc8e6ffffd2e6ffff58e8ffff62e8ffff20ebffffe4ebffff2cfbffffd2590000e6590000525a0000 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: Boxes + m_OriginalName: Boxes m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 22994 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 0 m_IsRenamingFilename: 0 m_ClientGUIView: {fileID: 8} m_SearchString: @@ -393,9 +393,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 380 + x: 377.6 y: 73.6 - width: 1180.4 + width: 1170 height: 577.4 m_SerializedDataModeController: m_DataMode: 0 @@ -684,9 +684,9 @@ MonoBehaviour: floating: 0 collapsed: 0 displayed: 1 - snapOffset: {x: -537.5999, y: -567.19995} + snapOffset: {x: 632.8, y: 10.400024} snapOffsetDelta: {x: 0, y: 0} - snapCorner: 3 + snapCorner: 0 id: UnityEditor.SceneViewCameraOverlay index: 8 layout: 4 @@ -703,9 +703,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 74.1806, y: 46.2712, z: 2.4301567} + m_Target: {x: 168.2456, y: -18.17496, z: -113.54839} speed: 2 - m_Value: {x: 74.1806, y: 46.2712, z: 2.4301567} + m_Value: {x: 12.164255, y: 3.7472608, z: -12.235546} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -751,20 +751,20 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: 0, y: 0.7071068, z: 0, w: 0.7071068} + m_Target: {x: 0.08257523, y: 0.73403174, z: -0.090743445, w: 0.6679471} speed: 2 - m_Value: {x: 0, y: 0.7071068, z: 0, w: 0.7071068} + m_Value: {x: 0.2399121, y: 0.07418014, z: -0.018388972, w: 0.96778166} m_Size: - m_Target: 96.685974 + m_Target: 150.10303 speed: 2 - m_Value: 96.685974 + m_Value: 11.807482 m_Ortho: m_Target: 0 speed: 2 m_Value: 0 m_CameraSettings: - m_Speed: 0.88056 - m_SpeedNormalized: 0.44 + m_Speed: 0.94053 + m_SpeedNormalized: 0.47 m_SpeedMin: 0.001 m_SpeedMax: 2 m_EasingEnabled: 1 @@ -802,9 +802,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 380 + x: 377.6 y: 73.6 - width: 1180.4 + width: 1170 height: 577.4 m_SerializedDataModeController: m_DataMode: 0 @@ -858,23 +858,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 1180.4 + width: 1170 height: 556.4 m_Scale: {x: 1, y: 1} - m_Translation: {x: 590.2, y: 278.2} + m_Translation: {x: 585, y: 278.2} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -590.2 + x: -585 y: -278.2 - width: 1180.4 + width: 1170 height: 556.4 m_MinimalGUI: 1 m_defaultScale: 1 - m_LastWindowPixelSize: {x: 1475.5, y: 721.75} + m_LastWindowPixelSize: {x: 1462.5, y: 721.75} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 00000000000000000000 @@ -902,7 +902,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 672 - width: 1561.4 + width: 1548.6 height: 391.40002 m_SerializedDataModeController: m_DataMode: 0 @@ -942,9 +942,9 @@ MonoBehaviour: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: a45d0000 - m_LastClickedID: 23972 - m_ExpandedIDs: 00000000a45d0000a65d000000ca9a3b + m_SelectedIDs: da5d0000 + m_LastClickedID: 24026 + m_ExpandedIDs: 00000000da5d0000dc5d000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -972,7 +972,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000a45d0000a65d0000 + m_ExpandedIDs: 00000000da5d0000dc5d0000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -999,7 +999,7 @@ MonoBehaviour: m_ListAreaState: m_SelectedInstanceIDs: m_LastClickedInstanceID: 0 - m_HadKeyboardFocusLastEvent: 0 + m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000147d000078590000dc5d0000 m_RenameOverlay: m_UserAcceptedRename: 0 @@ -1048,9 +1048,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1562.4 + x: 1549.6 y: 73.6 - width: 484.59998 + width: 497.40002 height: 989.80005 m_SerializedDataModeController: m_DataMode: 0 diff --git a/LMC/UserSettings/Search.index b/LMC/UserSettings/Search.index new file mode 100644 index 00000000..dba62d53 --- /dev/null +++ b/LMC/UserSettings/Search.index @@ -0,0 +1,13 @@ +{ + "name": "Assets", + "roots": ["Assets"], + "includes": [], + "excludes": [], + "options": { + "types": true, + "properties": true, + "extended": false, + "dependencies": false + }, + "baseScore": 999 +} \ No newline at end of file diff --git a/LMC/UserSettings/Search.settings b/LMC/UserSettings/Search.settings new file mode 100644 index 00000000..36d914c3 --- /dev/null +++ b/LMC/UserSettings/Search.settings @@ -0,0 +1,75 @@ +trackSelection = true +refreshSearchWindowsInPlayMode = false +fetchPreview = true +defaultFlags = 0 +keepOpen = false +queryFolder = "Assets" +onBoardingDoNotAskAgain = true +showPackageIndexes = false +showStatusBar = false +scopes = { +} +providers = { + performance = { + active = false + priority = 100 + defaultAction = null + } + asset = { + active = true + priority = 25 + defaultAction = null + } + log = { + active = false + priority = 210 + defaultAction = null + } + profilermarkers = { + active = false + priority = 100 + defaultAction = null + } + find = { + active = true + priority = 25 + defaultAction = null + } + adb = { + active = false + priority = 2500 + defaultAction = null + } + scene = { + active = true + priority = 50 + defaultAction = null + } + packages = { + active = true + priority = 90 + defaultAction = null + } + store = { + active = true + priority = 100 + defaultAction = null + } +} +objectSelectors = { +} +recentSearches = [ +] +searchItemFavorites = [ +] +savedSearchesSortOrder = 0 +showSavedSearchPanel = false +hideTabs = false +expandedQueries = [ +] +queryBuilder = false +ignoredProperties = "id;name;classname;imagecontentshash" +helperWidgetCurrentArea = "all" +disabledIndexers = "" +minIndexVariations = 2 +findProviderIndexHelper = true \ No newline at end of file